summaryrefslogtreecommitdiff
path: root/lib/command-line.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2013-06-19 13:07:35 -0700
committerBen Pfaff <blp@nicira.com>2013-06-28 16:09:37 -0700
commit728a8b141ff670d0b98b61bd88a6bb7a9c719e26 (patch)
tree992f96dc5d314fccae032d15ede60e68c66fdefb /lib/command-line.c
parent1514b275558304c63bc3838c2da5c4be0c1cbef0 (diff)
downloadopenvswitch-728a8b141ff670d0b98b61bd88a6bb7a9c719e26.tar.gz
ovs-thread: Add support for various thread-related assertions.
Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Ethan Jackson <ethan@nicira.com>
Diffstat (limited to 'lib/command-line.c')
-rw-r--r--lib/command-line.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/command-line.c b/lib/command-line.c
index 70b1f4d1b..7800c0b6e 100644
--- a/lib/command-line.c
+++ b/lib/command-line.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008, 2009, 2010, 2011 Nicira, Inc.
+ * Copyright (c) 2008, 2009, 2010, 2011, 2013 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -19,6 +19,7 @@
#include <getopt.h>
#include <limits.h>
#include <stdlib.h>
+#include "ovs-thread.h"
#include "util.h"
#include "vlog.h"
@@ -110,6 +111,7 @@ proctitle_init(int argc, char **argv)
{
int i;
+ assert_single_threaded();
if (!argc || !argv[0]) {
/* This situation should never occur, but... */
return;