summaryrefslogtreecommitdiffstats
path: root/source4/lib/events
Commit message (Collapse)AuthorAgeFilesLines
* s4:lib/events: remove unused allow_warnings=TrueStefan Metzmacher2014-11-251-1/+0
| | | | | Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
* s4:lib/events: explicitly use allow_warnings=TrueStefan Metzmacher2014-04-021-0/+1
| | | | | Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
* s4:lib/events: make use of samba_tevent_set_debug()Stefan Metzmacher2013-02-281-35/+1
| | | | | Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
* s4-events: Do not vasprintf() the tevent debug messages that will not be shownAndrew Bartlett2012-08-091-4/+6
| | | | | | | This malloc() and free() actually shows up quite high on a call profile of provision of the AD DC. Andrew Bartlett
* s4:lib/events: no longer define TEVENT_COMPAT_DEFINESStefan Metzmacher2012-05-141-3/+0
| | | | metze
* s4:lib/events: remove unused event_context_find() prototypeStefan Metzmacher2012-05-141-1/+0
| | | | metze
* s4-auth Rename auth -> auth4 to avoid conflict with s3 authAndrew Bartlett2011-05-081-0/+2
|
* Use <tevent.h> so the system tevent gets included, if enabled.Jelmer Vernooij2011-02-281-1/+1
|
* s4: Remove the old perl/m4/make/mk-based build system.Jelmer Vernooij2010-10-311-5/+0
| | | | | | | | The new waf-based build system now has all the same functionality, and the old build system has been broken for quite some time. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sun Oct 31 02:01:44 UTC 2010 on sn-devel-104
* waf: Remove lib prefix from libraries manually.Jelmer Vernooij2010-10-261-1/+1
|
* s4: Drop duplicate 'lib' prefix for private libraries.Jelmer Vernooij2010-10-261-1/+1
|
* s4: Rename LIBSAMBA-* to libsamba-*Jelmer Vernooij2010-10-241-1/+1
|
* s4: Rename LIBEVENTS to libevents.Jelmer Vernooij2010-10-231-1/+1
|
* s4-events: LIBEVENTS depends on LIBSAMBA-UTILAndrew Tridgell2010-10-211-1/+1
| | | | | | it needs it for the debug code Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-events: make LIBEVENTS a private libraryAndrew Tridgell2010-10-211-4/+5
|
* s4-tevent Remove event_contex_find() and event_context_set_default()Andrew Bartlett2010-10-111-30/+0
| | | | | | | | It is considered that it is better to create a new event context rather than 'finding' some other event context, in the case where we do not have one specified. Andrew Bartlett
* s4-event: event_context_find() should use s4_event_context_init()Andrew Tridgell2010-08-231-1/+1
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-waf: removed the AUTOGENERATED markersAndrew Tridgell2010-04-061-3/+0
| | | | we won't be using the mk -> wscript generator again
* s4-waf: mark the wscript files as python so vim/emacs knows how to highlight ↵Andrew Tridgell2010-04-061-0/+2
| | | | them
* build: commit all the waf build files in the treeAndrew Tridgell2010-04-061-0/+9
|
* s4-event: added s4_event_context_set_default()Andrew Tridgell2010-01-082-1/+15
| | | | we're still not weaned off event_context_find()
* s4:tevent: Increase trace debug level to 50.Andrew Kroeger2009-05-271-1/+1
| | | | | | | The sheer volume of messages generated by tevent when the trace level is set to 10 makes it difficult to debug issues in a level 10 log. Increasing this to 50 allows tevent tracing to be enabled if needed, but otherwise keeps the extra chatter out of a level 10 log.
* s4:events: allow nested events until we fixed all code to avoid themStefan Metzmacher2009-03-121-0/+2
| | | | metze
* s4:lib/events: map TEVENT_DEBUG_TRACE to debug level 10Stefan Metzmacher2009-02-251-1/+1
| | | | metze
* Stop installing events.h - it contains a broken include itself andJelmer Vernooij2009-01-281-2/+0
| | | | should be considered internal now.
* s4:events: don't trigger \n in debug messages two timesStefan Metzmacher2009-01-081-1/+1
| | | | metze
* s4:lib/events: remove unused events_internal.hStefan Metzmacher2009-01-022-6/+1
| | | | | | external users need to use tevent_internal.h anyway metze
* s4:lib/events: convert to use tevent_* functions instead of compat macrosStefan Metzmacher2009-01-021-12/+11
| | | | metze
* s4:lib/events: deprecate event_context_find()Stefan Metzmacher2009-01-021-1/+1
| | | | metze
* s4:tevent: move event_context_find() to tevent_s4.cStefan Metzmacher2009-01-021-0/+17
| | | | metze
* s4:lib/tevent: rename structsStefan Metzmacher2008-12-292-4/+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-292-0/+10
| | | | | | We have compat macros to keep the callers happy. metze
* Fix some tevent includes, trying to fix the buildKai Blin2008-12-262-3/+3
|
* Fix more compiler warnings in various places.Jelmer Vernooij2008-12-231-2/+2
|
* Move Samba4-specific file out of common libtevent.Jelmer Vernooij2008-12-233-5/+73
|
* Specify explicit path to tevent.h, compilation breaks without it for me.Jelmer Vernooij2008-12-191-1/+1
|
* s4:lib/tevent: add lib/events/ compat and let things compileStefan Metzmacher2008-12-174-0/+13
| | | | metze
* s4:lib/events: move to toplevel directory as lib/tevent/Stefan Metzmacher2008-12-1730-7911/+0
| | | | | | This commit will not compile on its own. metze
* Make sure prototypes are always included, make some functions static andJelmer Vernooij2008-10-201-0/+1
| | | | remove some unused functions.
* Fix libevents standalone buildSimo Sorce2008-09-198-17/+213
| | | | | | | | | Make sure to build against libtalloc.a and not individual talloc objects, so that the library can be also built against libtalloc.so and use it as a shared library instead of statically compiling talloc. Also add shared-build target to the events library. Useful to build multiple standalone libraries that depend on each other without having to install them to the final install dir during the build.
* Generate with 1.3.36.Jelmer Vernooij2008-09-183-8/+13
|
* fixd a bug in the signal handling code - we could get phantom signalsAndrew Tridgell2008-07-241-5/+5
| | | | | (signum 64) (This used to be commit af7fb2e38ba27cf8058eb1cef1f96bbc7b19849f)
* Remove C++ keywords from events.h header.Andrew Bartlett2008-07-141-4/+4
| | | | | Andrew Bartlett (This used to be commit 7ca421eb32bed3c400f863b654712d922c82bfb9)
* lib/events: build as MERGED_OBJ instead of STATIC_LIBRARYStefan Metzmacher2008-06-301-1/+1
| | | | | metze (This used to be commit a2a506ba2e044699d147486e987b11d839373784)
* Only try to detect the events lib dir if it wasn't set earlier.Jelmer Vernooij2008-06-261-10/+12
| | | | (This used to be commit 3f48f68800176d992a1bd9b6349f22ec152fc34a)
* Include events_util.h in events_aio.cVolker Lendecke2008-06-191-0/+1
| | | | | | | Without this, linking fails with DLIST_ADD and DLIST_REMOVE being undefined Signed-off-by: Stefan Metzmacher <metze@samba.org> (This used to be commit 87385e4c873f80956dc1c43424dd4f49a993586c)
* Make sure events pc file gets installed.Jelmer Vernooij2008-06-171-0/+2
| | | | (This used to be commit e12c0b61573f27969a79d4c07a8fd42f6c931d7e)
* Avoid including events_util.h in events_internal.h since the latter isJelmer Vernooij2008-06-177-2/+6
| | | | | installed. (This used to be commit 7a7e8f30dd3e5bfad788a098872afa8263321cbb)
* Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into ↵Jelmer Vernooij2008-06-151-3/+3
|\ | | | | | | | | | | v4-0-fixmodulesdir (This used to be commit 1659a572c49b2f9cf336b27ec1c1bec1b86d688e)
| * Fix events_aioSimo Sorce2008-06-141-3/+3
| | | | | | | | (This used to be commit d5525b79649ff75d6e9e853615949e4fbe9e0b6e)