// 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 static int data1; static int data2; static pthread_rwlock_t rwlock = PTHREAD_RWLOCK_INITIALIZER; void *t_fun(void *arg) { pthread_rwlock_wrlock(&rwlock); data1++; // NORACE printf("%d",data2); // NORACE pthread_rwlock_unlock(&rwlock); return NULL; } int main(void) { pthread_t id; pthread_create(&id, NULL, t_fun, NULL); pthread_rwlock_wrlock(&rwlock); printf("%d",data1); // NORACE data2++; // NORACE pthread_rwlock_unlock(&rwlock); pthread_join (id, NULL); return 0; }