#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
typedef struct EventHandlerSolaris {
EventHandler base;
pthread_t thr;
int port;
} EventHandlerSolaris;
int ev_convert2sys_events(
int events);
void ev_handle_events(EventHandlerSolaris *ev);
#ifdef __cplusplus
}
#endif
#endif