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