diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-03-12 09:33:26 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-03-12 12:12:34 +0100 |
commit | 9932fd2d9af3c71262c5cca61c3b38809b952d95 (patch) | |
tree | 61c193958dffac8ec26d09c3f9450c41e44c033b /lib/tevent/tevent_internal.h | |
parent | 880d9d6d8c209c770185b9b1c9a3019cb56be763 (diff) | |
download | samba-9932fd2d9af3c71262c5cca61c3b38809b952d95.tar.gz |
tevent: pass __location__ to tevent_loop_once/wait()
metze
Diffstat (limited to 'lib/tevent/tevent_internal.h')
-rw-r--r-- | lib/tevent/tevent_internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tevent/tevent_internal.h b/lib/tevent/tevent_internal.h index 5a645ecb608..151a34fc425 100644 --- a/lib/tevent/tevent_internal.h +++ b/lib/tevent/tevent_internal.h @@ -153,8 +153,8 @@ struct tevent_ops { const char *location); /* loop functions */ - int (*loop_once)(struct tevent_context *ev); - int (*loop_wait)(struct tevent_context *ev); + int (*loop_once)(struct tevent_context *ev, const char *location); + int (*loop_wait)(struct tevent_context *ev, const char *location); }; struct tevent_fd { |