aboutsummaryrefslogtreecommitdiff
path: root/test/asan/TestCases/Helpers/init-order-pthread-create-extra.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/asan/TestCases/Helpers/init-order-pthread-create-extra.cc')
-rw-r--r--test/asan/TestCases/Helpers/init-order-pthread-create-extra.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/asan/TestCases/Helpers/init-order-pthread-create-extra.cc b/test/asan/TestCases/Helpers/init-order-pthread-create-extra.cc
index d4606f0afb52..54f26f16724c 100644
--- a/test/asan/TestCases/Helpers/init-order-pthread-create-extra.cc
+++ b/test/asan/TestCases/Helpers/init-order-pthread-create-extra.cc
@@ -1,2 +1,2 @@
-void *bar(void *input);
-void *glob2 = bar((void*)0x2345);
+void *bar(void *input, bool sleep_before_init);
+void *glob2 = bar((void*)0x2345, true);