r4943: Smplified the events handling code a lot. The first source of
authorAndrew Tridgell <tridge@samba.org>
Sun, 23 Jan 2005 11:49:15 +0000 (11:49 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:09:08 +0000 (13:09 -0500)
commitfd62df64188c0f992876c72fdda8a6da5dba3090
treea5f212e796816c648a3a0e49caa457eb597e292b
parent54eff1435dd69d489ae35834f17989f79011418e
r4943: Smplified the events handling code a lot. The first source of
complexity was that events didn't automatically cleanup
themselves. This was because the events code was written before we had
talloc destructors, so you needed to call event_remove_XX() to clean
the event out of the event lists from every piece of code that used
events. I have now added automatic event destructors, which in turn
allowed me to simplify a lot of the calling code.

The 2nd source of complexity was caused by the ref_count, which was
needed to cope with event handlers destroying events while handling
them, which meant the linked lists became invalid, so the ref_count ws
used to mark events for later destruction.

The new system is much simpler. I now have a ev->destruction_count,
which is incremented in all event destructors. The event dispatch code
checks for changes to this and handles it.
(This used to be commit a3c7417cfeab429ffb22d5546b205818f531a7b4)
source4/include/events.h
source4/lib/events.c
source4/lib/messaging/messaging.c
source4/libcli/nbt/nbtsocket.c
source4/libcli/raw/clisocket.c
source4/libcli/raw/clitransport.c
source4/libcli/resolve/host.c
source4/ntvfs/posix/pvfs_wait.c
source4/rpc_server/echo/rpc_echo.c
source4/smbd/service.c