diff options
Diffstat (limited to 'jnlib/w32-pth.h')
-rw-r--r-- | jnlib/w32-pth.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/jnlib/w32-pth.h b/jnlib/w32-pth.h index bb010ae99..bcd82659c 100644 --- a/jnlib/w32-pth.h +++ b/jnlib/w32-pth.h @@ -229,18 +229,12 @@ pth_time_t pth_timeout (long sec, long usec); pth_event_t pth_event_isolate (pth_event_t hd); int pth_event_free (pth_event_t hd, int mode); int pth_event_status (pth_event_t hd); -int pth_event_occured (pth_event_t hd); +int pth_event_occurred (pth_event_t hd); pth_event_t pth_event_concat (pth_event_t ev, ...); pth_event_t pth_event (unsigned long spec, ...); -/* Backward compatibility (Pth < 1.5.0). */ -#define pth_event_occurred(ev) \ - ( pth_event_status(ev) == PTH_STATUS_OCCURRED \ - || pth_event_status(ev) == PTH_STATUS_FAILED ) - - /*-- pth_util.c --*/ /* void sigemptyset (struct sigset_s * ss); */ |