Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in os_unix.c. (CVS 3082) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c0e987bcfa899c073d54fbd5a3606c70 |
User & Date: | drh 2006-02-11 02:03:53.000 |
Context
2006-02-11
| ||
02:12 | Version 3.3.4 (CVS 3083) (check-in: 033aaab67f user: drh tags: trunk) | |
02:03 | Fix typo in os_unix.c. (CVS 3082) (check-in: c0e987bcfa user: drh tags: trunk) | |
01:56 | Prepare for the release of 3.3.4. (CVS 3081) (check-in: 951f3322c0 user: drh tags: trunk) | |
Changes
Changes to src/os_unix.c.
︙ | ︙ | |||
1746 1747 1748 1749 1750 1751 1752 | pthread_mutex_lock(&mutexAux); mutexOwner = pthread_self(); mutexOwnerValid = 1; } inMutex++; pthread_mutex_unlock(&mutexAux); #else | | | 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 | pthread_mutex_lock(&mutexAux); mutexOwner = pthread_self(); mutexOwnerValid = 1; } inMutex++; pthread_mutex_unlock(&mutexAux); #else inMutex++; #endif } void sqlite3UnixLeaveMutex(){ assert( inMutex>0 ); #ifdef SQLITE_UNIX_THREADS pthread_mutex_lock(&mutexAux); inMutex--; |
︙ | ︙ |