svn commit: r247755 - head/sbin/devd

Eitan Adler eadler at FreeBSD.org
Mon Mar 4 02:21:13 UTC 2013


Author: eadler
Date: Mon Mar  4 02:21:12 2013
New Revision: 247755
URL: http://svnweb.freebsd.org/changeset/base/247755

Log:
  devd: Remove call to _exit() from signal handler, which also sets a stop flag.
  
  Submitted by:	Christoph Mallon <christoph.mallon at gmx.de>
  Approved by:	cperciva (mentor)

Modified:
  head/sbin/devd/devd.cc

Modified: head/sbin/devd/devd.cc
==============================================================================
--- head/sbin/devd/devd.cc	Mon Mar  4 02:21:08 2013	(r247754)
+++ head/sbin/devd/devd.cc	Mon Mar  4 02:21:12 2013	(r247755)
@@ -1077,7 +1077,6 @@ static void
 gensighand(int)
 {
 	romeo_must_die = 1;
-	_exit(0);
 }
 
 static void


More information about the svn-src-all mailing list