X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=boehm-gc%2Ftests%2Fthread_leak_test.c;fp=boehm-gc%2Ftests%2Fthread_leak_test.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=1174705e45e9b7e81f32737b6bc757a2149126af;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/boehm-gc/tests/thread_leak_test.c b/boehm-gc/tests/thread_leak_test.c deleted file mode 100644 index 1174705e..00000000 --- a/boehm-gc/tests/thread_leak_test.c +++ /dev/null @@ -1,40 +0,0 @@ -#define GC_LINUX_THREADS -#include "leak_detector.h" -#include -#include - -void * test(void * arg) { - int *p[10]; - int i; - GC_find_leak = 1; /* for new collect versions not compiled */ - /* with -DFIND_LEAK. */ - for (i = 0; i < 10; ++i) { - p[i] = malloc(sizeof(int)+i); - } - CHECK_LEAKS(); - for (i = 1; i < 10; ++i) { - free(p[i]); - } -} - -#define NTHREADS 5 - -main() { - int i; - pthread_t t[NTHREADS]; - int code; - - for (i = 0; i < NTHREADS; ++i) { - if ((code = pthread_create(t + i, 0, test, 0)) != 0) { - printf("Thread creation failed %d\n", code); - } - } - for (i = 0; i < NTHREADS; ++i) { - if ((code = pthread_join(t[i], 0)) != 0) { - printf("Thread join failed %lu\n", code); - } - } - CHECK_LEAKS(); - CHECK_LEAKS(); - CHECK_LEAKS(); -}