diff options
Diffstat (limited to 'libglusterfs/src/event.h')
| -rw-r--r-- | libglusterfs/src/event.h | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/libglusterfs/src/event.h b/libglusterfs/src/event.h index 25396325c2a..57884d173ce 100644 --- a/libglusterfs/src/event.h +++ b/libglusterfs/src/event.h @@ -64,18 +64,18 @@ struct event_pool {  };  struct event_ops { -  struct event_pool * (*new) (int count); +        struct event_pool * (*new) (int count); -  int (*event_register) (struct event_pool *event_pool, int fd, -			 event_handler_t handler, -			 void *data, int poll_in, int poll_out); +        int (*event_register) (struct event_pool *event_pool, int fd, +                               event_handler_t handler, +                               void *data, int poll_in, int poll_out); -  int (*event_select_on) (struct event_pool *event_pool, int fd, int idx, -			  int poll_in, int poll_out); +        int (*event_select_on) (struct event_pool *event_pool, int fd, int idx, +                                int poll_in, int poll_out); -  int (*event_unregister) (struct event_pool *event_pool, int fd, int idx); +        int (*event_unregister) (struct event_pool *event_pool, int fd, int idx); -  int (*event_dispatch) (struct event_pool *event_pool); +        int (*event_dispatch) (struct event_pool *event_pool);  };  struct event_pool * event_pool_new (int count);  | 
