aboutsummaryrefslogtreecommitdiff
path: root/lib/process.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-02-11 10:59:47 -0800
committerBen Pfaff <blp@nicira.com>2010-02-11 10:59:47 -0800
commit67a4917b07031b387beafaedce413b4207214059 (patch)
tree0b14aebd79b746f7f5d943be9829cd359fcb49c5 /lib/process.c
parent193ec5109dedb23058dfa734545313b5b3ba10c8 (diff)
Rename UNUSED macro to OVS_UNUSED to avoid naming conflict.
Requested by Jean Tourrilhes <jt@hpl.hp.com>.
Diffstat (limited to 'lib/process.c')
-rw-r--r--lib/process.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/process.c b/lib/process.c
index 1fe3c123..1f6b00fc 100644
--- a/lib/process.c
+++ b/lib/process.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008, 2009 Nicira Networks.
+ * Copyright (c) 2008, 2009, 2010 Nicira Networks.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -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
@@ -595,7 +595,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;