#ifndef _ATOMICREFERENCE_H #define _ATOMICREFERENCE_H /* Filename : AtomicReference.cvh Authors : YYY, XXX Created : 2023-12-21 Modified : 2025-01-17 CIVL-C model of Java's java.util.concurrent.atomic.AtomicReference. An AtomicReference wraps a pointer value (type void*) and provides methods to access it atomically. This is a partial implementation, containing only the methods required for this project. some Lab some division some institution */ #include typedef struct AtomicReference * AtomicReference; /* Creates new AtomicReference with given pointer value. */ AtomicReference AtomicReference_create(void* initial_value); /* Deallocates the ref. */ void AtomicReference_destroy(AtomicReference ref); /* Atomically sets the value to update if the current value == expected. */ bool AtomicReference_compareAndSet(AtomicReference ref, void* expect, void* update); /* Returns the current value. */ void* AtomicReference_get(AtomicReference ref); #endif