// 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 #include #include #include "racemacros.h" int x = 0; pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; void *t_fun(void *arg) { pthread_mutex_lock(&mutex); if (x == 0) { assert_racefree(x); pthread_mutex_unlock(&mutex); } else { pthread_mutex_unlock(&mutex); access(x); } return NULL; } int main(void) { create_threads(t); pthread_mutex_lock(&mutex); access(x); assert_racefree(x); pthread_mutex_unlock(&mutex); join_threads(t); return 0; }