*** empty log message ***

This commit is contained in:
Marc Alexander Lehmann 2008-02-24 06:50:16 +00:00
parent 73b573a8fd
commit 09ed89308a
1 changed files with 2 additions and 2 deletions

4
ev.pod
View File

@ -2104,7 +2104,7 @@ some fictitiuous SIGUSR1 handler:
// no locking etc.
queue_put (data);
ev_async_send (DEFAULT_ &mysig);
ev_async_send (EV_DEFAULT_ &mysig);
}
static void
@ -2145,7 +2145,7 @@ employ a traditional mutex lock, such as in this pthread example:
queue_put (data);
pthread_mutex_unlock (&mymutex);
ev_async_send (DEFAULT_ &mysig);
ev_async_send (EV_DEFAULT_ &mysig);
}
static void