]> granicus.if.org Git - sudo/commitdiff
Use special values SIGCONT_FG and SIGCONT_BG instead of SIGUSR1 and
authorTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 7 Feb 2011 14:43:14 +0000 (09:43 -0500)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 7 Feb 2011 14:43:14 +0000 (09:43 -0500)
SIGUSR2 to indicate whether the child should be continued in the
foreground or background.

--HG--
branch : 1.7

sudo_exec.h

index 83671080fed30932f39932acd21e2d30a57e55f0..eb0290bcb1ce1dbfbe9299226dc471e3db39bda4 100644 (file)
 #ifndef _SUDO_EXEC_H
 #define _SUDO_EXEC_H
 
+/*
+ * Special values to indicate whether continuing in foreground or background.
+ */
+#define SIGCONT_FG     -2
+#define SIGCONT_BG     -3
+
 /*
  * Symbols shared between exec.c and exec_pty.c
  */