vlog: Add VLOG_ABORT() to log and call abort().
authorBen Pfaff <blp@nicira.com>
Tue, 22 May 2012 18:36:50 +0000 (11:36 -0700)
committerBen Pfaff <blp@nicira.com>
Wed, 18 Jul 2012 17:30:49 +0000 (10:30 -0700)
commitd41d4b714d29091dd502dd8705ef489467e11a43
tree3bd612bcd21fdf5e21048d9fb23d0bbcee6a7992
parente8087a87a3155656596d92ebecfa37841b637ef7
vlog: Add VLOG_ABORT() to log and call abort().

Whereas VLOG_FATAL() eventually calls exit(1), VLOG_ABORT()
eventually calls abort().  The key difference is that abort()
will cause a "monitor" process to restart, where exit(1) will
cause it to exit along with the monitored process.

Signed-off-by: Ben Pfaff <blp@nicira.com>
lib/util.c
lib/util.h
lib/vlog.c
lib/vlog.h