summaryrefslogtreecommitdiff
path: root/ev.pod
diff options
context:
space:
mode:
Diffstat (limited to 'ev.pod')
-rw-r--r--ev.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/ev.pod b/ev.pod
index 92995f8..dadf281 100644
--- a/ev.pod
+++ b/ev.pod
@@ -2099,7 +2099,7 @@ some fictitiuous SIGUSR1 handler:
// no locking etc.
queue_put (data);
- ev_async_send (DEFAULT_LOOP, &mysig);
+ ev_async_send (DEFAULT_ &mysig);
}
static void
@@ -2140,7 +2140,7 @@ emply a traditional mutex lock, such as in this pthread example:
queue_put (data);
pthread_mutex_unlock (&mymutex);
- ev_async_send (DEFAULT_LOOP, &mysig);
+ ev_async_send (DEFAULT_ &mysig);
}
static void