summaryrefslogtreecommitdiff
path: root/lib/tevent/tevent_internal.h
AgeCommit message (Collapse)AuthorFilesLines
2009-02-17tevent: Rename ev_timeval* functions to tevent_timeval, export them.Kai Blin1-2/+0
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
2009-02-16lib/tevent: change to LGPLv3+Stefan Metzmacher1-13/+17
metze
2009-02-13lib/tevent: add tevent_req infrastructureStefan Metzmacher1-1/+1
This is almost a copy of the async_req code, which will be removed later. metze
2009-02-13lib/tevent: expose ev_timeval_zero() for internal usageStefan Metzmacher1-0/+1
metze
2009-02-13lib/tevent: remove broken tevent_aio supportStefan Metzmacher1-14/+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
2009-01-05tevent: add tevent_context destructor that unlinks the events from the contextStefan Metzmacher1-0/+2
metze
2009-01-05tevent: keep a linked list of fd_eventsStefan Metzmacher1-0/+12
metze
2009-01-05tevent: keep a linked list of signal eventsStefan Metzmacher1-3/+3
metze
2009-01-03tevent: add tevent_fd_set_close_fn()Stefan Metzmacher1-1/+6
Let callers specify a close function as an alternative to TEVENT_FD_AUTOCLOSE. metze
2009-01-03tevent: move some common tevent_fd related functions into tevent_fd.cStefan Metzmacher1-0/+3
metze
2009-01-02tevent: rename ev_debug_ops => tevent_debug_opsStefan Metzmacher1-13/+5
And related changes, but we keep compat macros metze
2009-01-02tevent: pass down handler_name and location to the backend layerStefan Metzmacher1-21/+44
metze
2009-01-02tevent: use HAVE_EPOLL instead of HAVE_EVENTS_EPOLLStefan Metzmacher1-2/+2
metze
2009-01-02tevent: rename event_register_backend() => tevent_register_backend()Stefan Metzmacher1-5/+5
And fix the callers and there init functions. metze
2008-12-29s4:lib/tevent: rename structsStefan Metzmacher1-1/+1
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
2008-12-29lib/tevent: rename event_* => tevent_* in the header fileStefan Metzmacher1-57/+60
We have compat macros to keep the callers happy. metze
2008-12-23Fix more compiler warnings in various places.Jelmer Vernooij1-1/+1
2008-12-17s4:lib/events: move to toplevel directory as lib/tevent/Stefan Metzmacher1-0/+158
This commit will not compile on its own. metze