Enable sys_adjtimex() on arm-linux. Fixes #412408.
[valgrind.git] / memcheck / tests / err_disable3.c
blob53e335b9983164c9591ce21942eb6d0a77fd2ba4
2 /* Check that a child thread doesn't inherit its parent's disablement
3 status. */
5 #include <stdlib.h>
6 #include <stdio.h>
7 #include <assert.h>
8 #include <pthread.h>
9 #include <unistd.h> // sleep
11 #include "../include/valgrind.h"
13 char* block = NULL;
15 __attribute__((noinline)) void usechar ( char c )
17 // Spook gcc into believing mysterious bad things are
18 // happening behind its back, and that 'c' is definitely
19 // used in some (unknown) way.
20 __asm__ __volatile__("" : : "r"(c) : "memory","cc");
23 __attribute__((noinline)) void err ( void )
25 usechar( block[5] );
28 void* child_fn ( void* arg )
30 fprintf(stderr, "\n--------- c: start (expect 1) ---------\n\n");
31 err();
32 fprintf(stderr, "\n--------- c: end ---------\n\n");
33 return NULL;
36 int main ( void )
38 int r;
39 pthread_t child;
41 block = malloc(10);
42 free(block);
44 fprintf(stderr, "\n--------- p: disabling errors (expect 0) ---------\n\n");
46 VALGRIND_DISABLE_ERROR_REPORTING;
47 err();
49 fprintf(stderr, "\n--------- p: creating child ---------\n\n");
51 r = pthread_create(&child, NULL, child_fn, NULL);
52 assert(!r);
53 sleep(1); // let the child run first (determinism fix)
54 fprintf(stderr, "\n--------- p: join child ---------\n\n");
55 r = pthread_join(child, NULL);
56 assert(!r);
58 fprintf(stderr, "\n--------- p: re_enabled (expect 1) ---------\n\n");
59 VALGRIND_ENABLE_ERROR_REPORTING;
60 err();
62 return 0;