Skip to content

Commit

Permalink
Test threads with both C and C++.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpakkane committed Dec 25, 2015
1 parent 6a5ec36 commit 489ca23
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 4 deletions.
16 changes: 12 additions & 4 deletions test cases/common/102 threads/meson.build
Original file line number Diff line number Diff line change
@@ -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
)
)
40 changes: 40 additions & 0 deletions test cases/common/102 threads/threadprog.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#if defined _WIN32

#include<windows.h>
#include<stdio.h>

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<pthread.h>
#include<stdio.h>

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

0 comments on commit 489ca23

Please sign in to comment.