// This file is part of the SV-Benchmarks collection of verification tasks: // https://gitlab.com/sosy-lab/benchmarking/sv-benchmarks // // SPDX-FileCopyrightText: 2005-2021 University of Tartu & Technische Universität München // // SPDX-License-Identifier: MIT extern int __VERIFIER_nondet_int(); extern void abort(void); void assume_abort_if_not(int cond) { if(!cond) {abort();} } #include #include #include struct s { int datum; struct s *next; }; struct s *new(int x) { struct s *p = malloc(sizeof(struct s)); p->datum = x; p->next = NULL; return p; } void list_add(struct s *node, struct s *list) { struct s *temp = list->next; list->next = node; node->next = temp; } pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; struct s *slot[10]; void *t_fun(void *arg) { int i = __VERIFIER_nondet_int(); assume_abort_if_not(0 <= i && i < 10); pthread_mutex_lock(&mutex); list_add(new(3), slot[i]); pthread_mutex_unlock(&mutex); return NULL; } int main () { int j = __VERIFIER_nondet_int(); assume_abort_if_not(0 <= j && j < 10); pthread_t t1; struct s *p; slot[j] = new(1); list_add(new(2), slot[j]); pthread_create(&t1, NULL, t_fun, NULL); pthread_mutex_lock(&mutex); p = slot[j]->next; // NORACE printf("%d\n", p->datum); pthread_mutex_unlock(&mutex); return 0; }