Skip to content

Commit

Permalink
Extract thread-dynamic-array-join example from klib
Browse files Browse the repository at this point in the history
  • Loading branch information
sim642 committed Sep 20, 2023
1 parent beaa91f commit 28fd939
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions tests/regression/03-practical/32-thread-dynamic-array-join.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
// Thread pool dynamic array sequential joining.
// Extracted from concrat/klib.
#include <stdlib.h>
#include <pthread.h>
#include <goblint.h>
extern int __VERIFIER_nondet_int();

int data = 0;
pthread_mutex_t data_mutex = PTHREAD_MUTEX_INITIALIZER;

void *thread(void *arg) {
pthread_mutex_lock(&data_mutex);
data = __VERIFIER_nondet_int(); // NORACE
pthread_mutex_unlock(&data_mutex);
return NULL;
}

int main() {
int threads_total = __VERIFIER_nondet_int();
__goblint_assume(threads_total >= 0);

pthread_t *tids = malloc(threads_total * sizeof(pthread_t));

// create threads
for (int i = 0; i < threads_total; i++) {
pthread_create(&tids[i], NULL, &thread, NULL); // may fail but doesn't matter
}

// join threads
for (int i = 0; i < threads_total; i++) {
pthread_join(tids[i], NULL);
}

free(tids);

return data; // NORACE (all threads joined)
}

0 comments on commit 28fd939

Please sign in to comment.