mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
* when creating threads, just ask for a 256k stack size, since creating 498 threads each with the default 8M stack size fails on 32 bit machines. * limit number of callers to 3 so as to remove junk frames that cause different output on 32 vs 64 bit targets. * add a proper self-check at the end, to verify the number of detected errors is as expected * update output accordingly git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12086
129 lines
3.1 KiB
C
129 lines
3.1 KiB
C
|
|
/* Check that recycling thread slots doesn't cause new threads to
|
|
inherit the disablement status of the previous thread to occupy
|
|
that slot.
|
|
|
|
1. Create N threads, disable error reporting in them, and get them
|
|
all to exit (join with them). That creates N thread slots that
|
|
were vacated by threads with error reporting disabled. There
|
|
should be N complaints about threads exiting with errors
|
|
disabled.
|
|
|
|
2. Create N new threads and get them to wait at a barrier.
|
|
|
|
3. Let them all go past the barrier and call err(). There
|
|
should be N resulting error reports.
|
|
|
|
4. Join with the N threads.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <assert.h>
|
|
#include <pthread.h>
|
|
#include <semaphore.h>
|
|
|
|
#include "../include/valgrind.h"
|
|
|
|
char* block = NULL;
|
|
sem_t sem;
|
|
|
|
__attribute__((noinline)) void usechar ( char c )
|
|
{
|
|
// Spook gcc into believing mysterious bad things are
|
|
// happening behind its back, and that 'c' is definitely
|
|
// used in some (unknown) way.
|
|
__asm__ __volatile__("" : : "r"(c) : "memory","cc");
|
|
}
|
|
|
|
__attribute__((noinline)) void err ( void )
|
|
{
|
|
usechar( block[5] );
|
|
}
|
|
|
|
void* child_fn_1 ( void* arg )
|
|
{
|
|
// Disable error reporting, then wait to exit
|
|
VALGRIND_DISABLE_ERROR_REPORTING;
|
|
int r = sem_wait(&sem); assert(!r);
|
|
return NULL;
|
|
}
|
|
|
|
void* child_fn_2 ( void* arg )
|
|
{
|
|
// make an error, then wait to exit
|
|
err();
|
|
int r = sem_wait(&sem); assert(!r);
|
|
return NULL;
|
|
}
|
|
|
|
#define NTHREADS 498 // VG_N_THREADS - 2
|
|
|
|
int main ( void )
|
|
{
|
|
int r, i;
|
|
pthread_t child[NTHREADS];
|
|
|
|
block = malloc(10);
|
|
free(block);
|
|
|
|
// part 1
|
|
fprintf(stderr, "\n-------- Letting %d threads exit "
|
|
"w/ errs disabled ------\n\n",
|
|
NTHREADS);
|
|
|
|
// set up the semaphore
|
|
r = sem_init(&sem, 0, 0); assert(!r);
|
|
|
|
pthread_attr_t attr;
|
|
r = pthread_attr_init(&attr); assert(!r);
|
|
r = pthread_attr_setstacksize(&attr, 64 * 4096); // 256k
|
|
|
|
// create N threads to do child_fn_1 ...
|
|
for (i = 0; i < NTHREADS; i++) {
|
|
r = pthread_create(&child[i], &attr, child_fn_1, NULL);
|
|
assert(!r);
|
|
}
|
|
|
|
// let them all exit
|
|
for (i = 0; i < NTHREADS; i++) {
|
|
r = sem_post(&sem); assert(!r);
|
|
}
|
|
|
|
// join
|
|
for (i = 0; i < NTHREADS; i++) {
|
|
r = pthread_join(child[i], NULL); assert(!r);
|
|
}
|
|
|
|
// part 2
|
|
|
|
fprintf(stderr, "\n-------- Letting %d threads make an error "
|
|
"------\n\n",
|
|
NTHREADS);
|
|
// semaphore is already back at zero
|
|
|
|
// create N threads to do child_fn_2 ...
|
|
for (i = 0; i < NTHREADS; i++) {
|
|
r = pthread_create(&child[i], &attr, child_fn_2, NULL);
|
|
assert(!r);
|
|
}
|
|
|
|
// let them all exit
|
|
for (i = 0; i < NTHREADS; i++) {
|
|
r = sem_post(&sem); assert(!r);
|
|
}
|
|
|
|
// join
|
|
for (i = 0; i < NTHREADS; i++) {
|
|
r = pthread_join(child[i], NULL); assert(!r);
|
|
}
|
|
|
|
// Print the final error counts. There need to be 498 errors
|
|
// in 1 context. Anything else, and something is not right.
|
|
int nerrors = VALGRIND_COUNT_ERRORS;
|
|
fprintf(stderr, "\n-------- Got %d errors (expected %d ==> %s) ------\n\n",
|
|
nerrors, NTHREADS, nerrors == NTHREADS ? "PASS" : "FAIL" );
|
|
|
|
return 0;
|
|
}
|