Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add missing disposal check. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | tkt-5cee5409f8 |
Files: | files | file ages | folders |
SHA1: |
e499efc92e8e9b729c12eb75137da8eb |
User & Date: | mistachkin 2018-01-27 20:04:17.157 |
Context
2018-01-27
| ||
21:13 | Add initial tests for ticket [5cee5409f8]. check-in: e30a873204 user: mistachkin tags: tkt-5cee5409f8 | |
20:04 | Add missing disposal check. check-in: e499efc92e user: mistachkin tags: tkt-5cee5409f8 | |
20:01 | Minor revision to the previous check-in, check for the pathological case of time going backwards while sleeping. check-in: 2ac7dd7c98 user: mistachkin tags: tkt-5cee5409f8 | |
Changes
Changes to System.Data.SQLite/SQLiteConnection.cs.
︙ | ︙ | |||
3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 | /// other threads); therefore, callers should generally use try/catch /// when calling the <see cref="EnlistTransaction" /> method. /// </returns> public bool WaitForEnlistmentReset( int timeoutMilliseconds ) { if (timeoutMilliseconds < 0) throw new ArgumentException("timeout cannot be negative"); const int defaultMilliseconds = 100; int sleepMilliseconds; if (timeoutMilliseconds == 0) | > > | 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 | /// other threads); therefore, callers should generally use try/catch /// when calling the <see cref="EnlistTransaction" /> method. /// </returns> public bool WaitForEnlistmentReset( int timeoutMilliseconds ) { CheckDisposed(); if (timeoutMilliseconds < 0) throw new ArgumentException("timeout cannot be negative"); const int defaultMilliseconds = 100; int sleepMilliseconds; if (timeoutMilliseconds == 0) |
︙ | ︙ |