mirror of
https://github.com/openvswitch/ovs
synced 2025-10-19 14:37:21 +00:00
list: Rename struct list to struct ovs_list
struct list is a common name and can't be used in public headers. Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
@@ -41,7 +41,7 @@ VLOG_DEFINE_THIS_MODULE(process);
|
||||
COVERAGE_DEFINE(process_start);
|
||||
|
||||
struct process {
|
||||
struct list node;
|
||||
struct ovs_list node;
|
||||
char *name;
|
||||
pid_t pid;
|
||||
|
||||
@@ -54,7 +54,7 @@ struct process {
|
||||
static int fds[2];
|
||||
|
||||
/* All processes. */
|
||||
static struct list all_processes = LIST_INITIALIZER(&all_processes);
|
||||
static struct ovs_list all_processes = LIST_INITIALIZER(&all_processes);
|
||||
|
||||
static void sigchld_handler(int signr OVS_UNUSED);
|
||||
|
||||
|
Reference in New Issue
Block a user