1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-15 11:41:13 +03:00

Fix more documentation typos.

FossilOrigin-Name: b9cbab739a62f497545161f30195272f4e687a7f
This commit is contained in:
drh
2011-06-20 21:47:58 +00:00
parent 2a0b9ef064
commit ef8662bb65
4 changed files with 20 additions and 20 deletions

View File

@@ -404,9 +404,9 @@ static int clock_seconds_proc(
*/
typedef struct UnlockNotification UnlockNotification;
struct UnlockNotification {
int fired; /* True after unlock event has occured */
pthread_cond_t cond; /* Condition variable to wait on */
pthread_mutex_t mutex; /* Mutex to protect structure */
int fired; /* True after unlock event has occurred */
pthread_cond_t cond; /* Condition variable to wait on */
pthread_mutex_t mutex; /* Mutex to protect structure */
};
/*