summaryrefslogtreecommitdiff
path: root/lib/queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/queue.h')
-rw-r--r--lib/queue.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/queue.h b/lib/queue.h
index 879f7a2d1..e30b84c54 100644
--- a/lib/queue.h
+++ b/lib/queue.h
@@ -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.
@@ -18,6 +18,7 @@
#define QUEUE_H 1
#include <stdbool.h>
+#include <stddef.h>
/* Packet queue. */
struct ovs_queue {
@@ -26,6 +27,8 @@ struct ovs_queue {
struct ofpbuf *tail; /* Last queued packet, null if n == 0. */
};
+#define OVS_QUEUE_INITIALIZER { 0, NULL, NULL }
+
void queue_init(struct ovs_queue *);
void queue_destroy(struct ovs_queue *);
void queue_clear(struct ovs_queue *);