mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
1849b816ee
metze
(This used to be commit 42fffd1d1c
)
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
diff -Naur samba-4.0.0alpha5-orig/source/lib/events/events.h samba-4.0.0alpha5/source/lib/events/events.h
|
|
--- samba-4.0.0alpha5-orig/source/lib/events/events.h 2008-06-30 19:34:11.000000000 +1000
|
|
+++ samba-4.0.0alpha5/source/lib/events/events.h 2008-07-25 20:02:56.000000000 +1000
|
|
@@ -53,24 +53,24 @@
|
|
|
|
struct fd_event *event_add_fd(struct event_context *ev, TALLOC_CTX *mem_ctx,
|
|
int fd, uint16_t flags, event_fd_handler_t handler,
|
|
- void *private);
|
|
+ void *private_data);
|
|
|
|
struct timed_event *event_add_timed(struct event_context *ev, TALLOC_CTX *mem_ctx,
|
|
struct timeval next_event,
|
|
event_timed_handler_t handler,
|
|
- void *private);
|
|
+ void *private_data);
|
|
|
|
struct signal_event *event_add_signal(struct event_context *ev, TALLOC_CTX *mem_ctx,
|
|
int signum, int sa_flags,
|
|
event_signal_handler_t handler,
|
|
- void *private);
|
|
+ void *private_data);
|
|
|
|
struct iocb;
|
|
struct aio_event *event_add_aio(struct event_context *ev,
|
|
TALLOC_CTX *mem_ctx,
|
|
struct iocb *iocb,
|
|
event_aio_handler_t handler,
|
|
- void *private);
|
|
+ void *private_data);
|
|
|
|
int event_loop_once(struct event_context *ev);
|
|
int event_loop_wait(struct event_context *ev);
|