#ifndef EVENT_SOLARIS_H
#define EVENT_SOLARIS_H
#include "event.h"
#include "../util/systhr.h"
#include <sys/event.h>
#include <sys/time.h>
#ifdef __cplusplus
extern "C" {
#endif
struct EventHandler {
int kqueue;
};
void ev_handle_events(EventHandler *ev);
int ev_convert2sys_events(
int events);
#ifdef __cplusplus
}
#endif
#endif