summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root>2008-02-24 06:50:16 +0000
committerroot <root>2008-02-24 06:50:16 +0000
commit6ebab2742bf23ba2760de924a14bb1277f3eaba8 (patch)
tree79b60ae18c39e7dfbd9c0e77238f3e221c7ac191
parentc2a92b708521b60b87c17215a11ecae9a7bf083d (diff)
*** empty log message ***
-rw-r--r--ev.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/ev.pod b/ev.pod
index b369141..812978b 100644
--- a/ev.pod
+++ b/ev.pod
@@ -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