Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make sure the threadsOverrideEachOthersLocks variable is only referenced by linux systems on a threadsafe compile. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e9d064bd9318c2bc9248df948f71fd30 |
User & Date: | drh 2009-09-10 19:20:03 |
Context
2009-09-10
| ||
20:23 | Fixed some warnings and an assert in the WINCE code when compiling under MSVC. check-in: f42ec993 user: shane tags: trunk | |
19:20 | Make sure the threadsOverrideEachOthersLocks variable is only referenced by linux systems on a threadsafe compile. check-in: e9d064bd user: drh tags: trunk | |
19:09 | Cleanup of warnings on MSVC build. check-in: 5588cc96 user: shane tags: trunk | |
Changes
Changes to src/os_unix.c.
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 |
assert( openList==pOpen ); openList = pOpen->pNext; } if( pOpen->pNext ){ assert( pOpen->pNext->pPrev==pOpen ); pOpen->pNext->pPrev = pOpen->pPrev; } assert( !pOpen->pUnused || threadsOverrideEachOthersLocks==0 ); /* If pOpen->pUnused is not null, then memory and file-descriptors ** are leaked. ** ** This will only happen if, under Linuxthreads, the user has opened ** a transaction in one thread, then attempts to close the database ** handle from another thread (without first unlocking the db file). |
> > |
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 |
assert( openList==pOpen ); openList = pOpen->pNext; } if( pOpen->pNext ){ assert( pOpen->pNext->pPrev==pOpen ); pOpen->pNext->pPrev = pOpen->pPrev; } #if SQLITE_THREADSAFE && defined(__linux__) assert( !pOpen->pUnused || threadsOverrideEachOthersLocks==0 ); #endif /* If pOpen->pUnused is not null, then memory and file-descriptors ** are leaked. ** ** This will only happen if, under Linuxthreads, the user has opened ** a transaction in one thread, then attempts to close the database ** handle from another thread (without first unlocking the db file). |