Go to the documentation of this file.00001
00012 #ifndef HEVENT_H
00013 #define HEVENT_H
00014
00015 #define HEVENT_BLOCKING 1
00016 #define HEVENT_NONBLOCKING 0
00017
00018 #include "hstructures.h"
00019
00025 struct hevent* hevent_create(int blocking);
00026
00033 int hevent_notify(struct hevent* event, int notification);
00034
00043 int hevent_wait(struct hevent* event);
00044
00050 int hevent_remove(struct hevent* event);
00051
00052
00053 #endif
00054