From 489ca238c57a6246ce8867cfd9c611322abd7e5d Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Fri, 25 Dec 2015 17:22:57 +0200 Subject: [PATCH] Test threads with both C and C++. --- test cases/common/102 threads/meson.build | 16 ++++++--- test cases/common/102 threads/threadprog.c | 40 ++++++++++++++++++++++ 2 files changed, 52 insertions(+), 4 deletions(-) create mode 100644 test cases/common/102 threads/threadprog.c diff --git a/test cases/common/102 threads/meson.build b/test cases/common/102 threads/meson.build index ca3eee5a7..78e5fbef2 100644 --- a/test cases/common/102 threads/meson.build +++ b/test cases/common/102 threads/meson.build @@ -1,7 +1,15 @@ -project('threads', 'cpp') +project('threads', 'cpp', 'c') -test('threadtest', - executable('threadprog', 'threadprog.cpp', - dependencies : dependency('threads') +threaddep = dependency('threads') + +test('cppthreadtest', + executable('cppthreadprog', 'threadprog.cpp', + dependencies : threaddep + ) +) + +test('cthreadtest', + executable('cthreadprog', 'threadprog.c', + dependencies : threaddep ) ) diff --git a/test cases/common/102 threads/threadprog.c b/test cases/common/102 threads/threadprog.c new file mode 100644 index 000000000..2dff169c6 --- /dev/null +++ b/test cases/common/102 threads/threadprog.c @@ -0,0 +1,40 @@ +#if defined _WIN32 + +#include +#include + +DWORD WINAPI thread_func(LPVOID ignored) { + printf("Printing from a thread.\n"); + return 0; +} + +int main(int argc, char **argv) { + printf("Starting thread.\n"); + HANDLE th; + DWORD id; + th = CreateThread(NULL, 0, thread_func, NULL, 0, &id); + WaitForSingleObject(th, INFINITE); + printf("Stopped thread.\n"); + return 0; +} +#else + +#include +#include + +void* main_func(void* ignored) { + printf("Printing from a thread.\n"); + return NULL; +} + +int main(int argc, char** argv) { + pthread_t thread; + int rc; + printf("Starting thread.\n"); + rc = pthread_create(&thread, NULL, main_func, NULL); + rc = pthread_join(thread, NULL); + printf("Stopped thread.\n"); + return rc; +} + +#endif