summaryrefslogtreecommitdiff
path: root/lib/process.c
diff options
context:
space:
mode:
authorThomas Graf <tgraf@noironetworks.com>2014-12-15 14:10:38 +0100
committerThomas Graf <tgraf@noironetworks.com>2014-12-15 14:15:16 +0100
commit55951e15e5603318219ea5efca160723bbb28111 (patch)
treebd330cbac77f1a8e595fd2e0079d36aa7875eb3c /lib/process.c
parentca6ba70092b1528e12d3140d70232175a13c335d (diff)
downloadopenvswitch-55951e15e5603318219ea5efca160723bbb28111.tar.gz
lib: Expose struct ovs_list definition in <openvswitch/list.h>
Expose the struct ovs_list definition in <openvswitch/list.h>. Keep the list access API private for now. Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'lib/process.c')
-rw-r--r--lib/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/process.c b/lib/process.c
index 93a99ab16..f6b665e81 100644
--- a/lib/process.c
+++ b/lib/process.c
@@ -54,7 +54,7 @@ struct process {
static int fds[2];
/* All processes. */
-static struct ovs_list all_processes = LIST_INITIALIZER(&all_processes);
+static struct ovs_list all_processes = OVS_LIST_INITIALIZER(&all_processes);
static void sigchld_handler(int signr OVS_UNUSED);