diff options
author | dim <dim@FreeBSD.org> | 2015-09-06 18:41:23 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-09-06 18:41:23 +0000 |
commit | 3da1400d07e473463df86668e1e50da8b02618fa (patch) | |
tree | b259e5d585da0f8cde9579939a74d5ef44c72abd /test/safestack/pthread.c | |
parent | d423c65af723ebf09d0356d1833a035e7c6e7aad (diff) | |
download | FreeBSD-src-3da1400d07e473463df86668e1e50da8b02618fa.zip FreeBSD-src-3da1400d07e473463df86668e1e50da8b02618fa.tar.gz |
Import compiler-rt 3.7.0 release (r246257).
Diffstat (limited to 'test/safestack/pthread.c')
-rw-r--r-- | test/safestack/pthread.c | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/test/safestack/pthread.c b/test/safestack/pthread.c new file mode 100644 index 0000000..416586e --- /dev/null +++ b/test/safestack/pthread.c @@ -0,0 +1,42 @@ +// RUN: %clang_safestack %s -pthread -o %t +// RUN: %run %t + +// XFAIL: darwin + +// Test that pthreads receive their own unsafe stack. + +#include <stdlib.h> +#include <string.h> +#include <pthread.h> +#include "utils.h" + +static int ptr_test = 42; + +void *t1_start(void *ptr) +{ + if (ptr != &ptr_test) + abort(); + + // safe stack + int val = ptr_test * 5; + + // unsafe stack + char buffer[8096]; // two pages + memset(buffer, val, sizeof (buffer)); + break_optimization(buffer); + + return ptr; +} + +int main(int argc, char **argv) +{ + pthread_t t1; + void *ptr = NULL; + if (pthread_create(&t1, NULL, t1_start, &ptr_test)) + abort(); + if (pthread_join(t1, &ptr)) + abort(); + if (ptr != &ptr_test) + abort(); + return 0; +} |