// 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 struct { int x; int y; } data; void *t_fun(void *arg) { data.x++; // RACE! return NULL; } int main() { int *i,j = __VERIFIER_nondet_int(); pthread_t id; if (j) i = &data.x; else i = &data.y; pthread_create(&id, NULL, t_fun, NULL); (*i)++; // RACE! return 0; }