// 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 typedef struct { int x; int y; } data; data *d; pthread_mutex_t m = PTHREAD_MUTEX_INITIALIZER; void *t_fun(void *arg) { pthread_mutex_lock(&m); d->x = 3; // NORACE d->y = 8; // RACE! pthread_mutex_unlock(&m); return NULL; } int main() { pthread_t id; data *z; d = malloc(sizeof(data)); z = d; pthread_create(&id, NULL, t_fun, NULL); pthread_mutex_lock(&m); printf("%d\n",d->x); // NORACE pthread_mutex_unlock(&m); printf("%d\n",z->y); // RACE! return 0; }