diff options
Diffstat (limited to 'sysdeps/linux-gnu/events.h')
-rw-r--r-- | sysdeps/linux-gnu/events.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/linux-gnu/events.h b/sysdeps/linux-gnu/events.h index 3802aff..51ef309 100644 --- a/sysdeps/linux-gnu/events.h +++ b/sysdeps/linux-gnu/events.h @@ -26,16 +26,16 @@ /* Declarations for event que functions. */ enum ecb_status { - ecb_cont, /* The iteration should continue. */ - ecb_yield, /* The iteration should stop, yielding this + ECB_CONT, /* The iteration should continue. */ + ECB_YIELD, /* The iteration should stop, yielding this * event. */ - ecb_deque, /* Like ecb_stop, but the event should be removed + ECB_DEQUE, /* Like ECB_STOP, but the event should be removed * from the queue. */ }; struct Event *each_qd_event(enum ecb_status (*cb)(struct Event *event, void *data), void *data); -void delete_events_for(struct Process * proc); +void delete_events_for(struct process *proc); void enque_event(struct Event *event); #endif /* SYSDEPS_LINUX_GNU_EVENTS_H */ |