// 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(); #include #include int myglobal; pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t mutex2 = PTHREAD_MUTEX_INITIALIZER; void *t_fun(void *arg) { if (myglobal) // NORACE printf("How do you do?\n"); return NULL; } int main(void) { pthread_t id; // invalidate myglobal int k = __VERIFIER_nondet_int(); myglobal = k; // create thread pthread_create(&id, NULL, t_fun, NULL); if (myglobal) // NORACE printf("Hello!\n"); pthread_join (id, NULL); return 0; }