summaryrefslogtreecommitdiffstats
path: root/lib/tevent/tevent.h
Commit message (Collapse)AuthorAgeFilesLines
...
* tevent: add private_print function feature to tevent_reqStefan Metzmacher2009-02-251-0/+11
| | | | metze
* tevent: add tevent_req_poll() functionStefan Metzmacher2009-02-251-0/+3
| | | | metze
* Attempt to fix the OpenChange build -- sorry for the breakVolker Lendecke2009-02-251-1/+1
|
* tevent.h requires bool and uint[16|32|64]_tVolker Lendecke2009-02-241-0/+1
|
* tevent: add tevent_wakeup_send/recv()Stefan Metzmacher2009-02-181-0/+4
| | | | | | This can be used as tevent_req based timer event. metze
* tevent: rename tevent_req_set_timeout() => tevent_req_set_endtime()Stefan Metzmacher2009-02-181-1/+1
| | | | | | This makes more clear what the function does. metze
* tevent: Rename ev_timeval* functions to tevent_timeval, export them.Kai Blin2009-02-171-0/+19
| | | | | Also add tevent_timeval_add() and tevent_timeval_current_ofs() to help not depending on lub/util/time.c for things that just need tevent
* lib/tevent: change to LGPLv3+Stefan Metzmacher2009-02-161-12/+16
| | | | metze
* Add missing prototype for "tevent_req_print"Volker Lendecke2009-02-141-0/+2
|
* lib/tevent: add tevent_req infrastructureStefan Metzmacher2009-02-131-0/+163
| | | | | | | This is almost a copy of the async_req code, which will be removed later. metze
* lib/tevent: remove broken tevent_aio supportStefan Metzmacher2009-02-131-22/+0
| | | | | | | | | | | | It makes no sense to support aio events because, the current implementation was based on IOCB_CMD_EPOLL_WAIT which never made it into the main kernel tree. The native linux aio can be used with select/epoll using eventfd(), which means we can implement aio with fd events and implement aio outside of tevent. metze
* Attempt to fix the build on netbsd5Volker Lendecke2009-01-051-0/+1
|
* tevent: fix tevent_add_timer() and tevent_add_aio() macrosStefan Metzmacher2009-01-051-2/+2
| | | | metze
* tevent: remove TEVENT_FD_AUTOCLOSE featureStefan Metzmacher2009-01-031-2/+0
| | | | | | | TEVENT_FD_AUTOCLOSE adds a dependency to SOCKET_WRAPPER, which is bad. Callers should use tevent_fd_set_close_fn() now. metze
* tevent: add tevent_fd_set_auto_close()Stefan Metzmacher2009-01-031-0/+1
| | | | | | | | tevent_fd_set_auto_close() is a simple wrapper arround tevent_fd_set_close_fn() with a callback that uses plain close(2). metze
* tevent: add tevent_fd_set_close_fn()Stefan Metzmacher2009-01-031-0/+6
| | | | | | | Let callers specify a close function as an alternative to TEVENT_FD_AUTOCLOSE. metze
* tevent: specify argument names for the event handlersStefan Metzmacher2009-01-031-12/+18
| | | | metze
* tevent: only provide compat macros if the caller wants themStefan Metzmacher2009-01-021-5/+0
| | | | metze
* tevent: rename ev_debug_ops => tevent_debug_opsStefan Metzmacher2009-01-021-0/+28
| | | | | | And related changes, but we keep compat macros metze
* tevent: make tevent_add_*() macros arround _tevent_add_*()Stefan Metzmacher2009-01-021-22/+44
| | | | | | | This passes some additional debug information into the events system to make it easier to find bugs. metze
* s4:lib/tevent: rename structsStefan Metzmacher2008-12-291-7/+4
| | | | | | | | | | | | | | | | | | | | list="" list="$list event_context:tevent_context" list="$list fd_event:tevent_fd" list="$list timed_event:tevent_timer" for s in $list; do o=`echo $s | cut -d ':' -f1` n=`echo $s | cut -d ':' -f2` r=`git grep "struct $o" |cut -d ':' -f1 |sort -u` files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4` for f in $files; do cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp mv $f.tmp $f done done metze
* lib/tevent: rename event_* => tevent_* in the header fileStefan Metzmacher2008-12-291-49/+127
| | | | | | We have compat macros to keep the callers happy. metze
* s4:lib/tevent: add lib/events/ compat and let things compileStefan Metzmacher2008-12-171-3/+3
| | | | metze
* s4:lib/events: move to toplevel directory as lib/tevent/Stefan Metzmacher2008-12-171-0/+98
This commit will not compile on its own. metze