lib: tevent: make TEVENT_SIG_INCREMENT atomic.
authorJeremy Allison <jra@samba.org>
Wed, 30 Jul 2014 16:56:54 +0000 (09:56 -0700)
committerKarolin Seeger <kseeger@samba.org>
Thu, 7 Aug 2014 14:43:09 +0000 (16:43 +0200)
commitf1cd12254405460bede46ab0e365c831f35e52b2
tree9825929ec3a6e9e8fad63591a57e72189b868c11
parentc8eea31756d80688044b44e040454588f45f3c03
lib: tevent: make TEVENT_SIG_INCREMENT atomic.

On arm platforms incrementing a variable is not
an atomic operation, so may be interrupted by
signal processing (if a signal interrupts another
signal handler).

Use compiler built-ins to make this atomic.
__sync_fetch_and_add() works on gcc, llvm,
IBM xlC on AIX, and Intel icc (10.1 and
above).

atomic_add_32() works on Oracle Solaris.

Based on an inital patch from kamei@osstech.co.jp.

Bug #10640 - smbd is not responding - tevent_common_signal_handler() increments non-atomic variables

https://bugzilla.samba.org/show_bug.cgi?id=10640

Back-ported from master 536c799f00d7bdd6a574b6bdbc0e9c742eeef8b5

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Volker Lendecke <Volker.Lendecke@SerNet.DE>
lib/replace/replace.h
lib/replace/wscript
lib/tevent/tevent_signal.c