X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=lib%2Fprocess.c;h=39168862ff55697e5b3ce5387e3804136275d509;hb=abaad8cf1b5089e17a4af0ab1ff644bfcf63cad9;hp=3504dfb0d95fcd26d9464e1ddc51e2ac42b3287c;hpb=651471fda8df6b3190973a2f048b66448fe90a93;p=openvswitch diff --git a/lib/process.c b/lib/process.c index 3504dfb0..39168862 100644 --- a/lib/process.c +++ b/lib/process.c @@ -55,7 +55,7 @@ static struct list all_processes = LIST_INITIALIZER(&all_processes); static bool sigchld_is_blocked(void); static void block_sigchld(sigset_t *); static void unblock_sigchld(const sigset_t *); -static void sigchld_handler(int signr UNUSED); +static void sigchld_handler(int signr OVS_UNUSED); static bool is_member(int x, const int *array, size_t); /* Initializes the process subsystem (if it is not already initialized). Calls @@ -585,7 +585,7 @@ process_run_capture(char **argv, char **stdout_log, char **stderr_log, } static void -sigchld_handler(int signr UNUSED) +sigchld_handler(int signr OVS_UNUSED) { struct process *p;