Shared data accesses can be serialized with DaCS by using a mutual exclusion primitive (mutex) to protect critical sections. A mutex can be hosted on any DE memory space and can be local or remote relative to the process calling these services.
The significant features of a mutex are:
Sharing Mutexes
When a mutex is created on a PPU which is an AE for DaCS for Hybrid, and the PPU is also a host for DaCS for Cell, the mutex can be shared by the PPU with both the x86_64 (DaCS for Hybrid HE) and the SPU (DaCS for Cell HE). The mutex can then be used to synchronize processes across all three levels.
The services which process a mutex fall into two categories:
mutex management services, for managing the mutex shared resource, which include dacs_mutex_init(), dacs_mutex_share(), dacs_mutex_accept(), dacs_mutex_release() and dacs_mutex_destroy(), and
mutex locking services, for locking and unlocking a mutex, which include dacs_mutex_lock(), dacs_mutex_unlock() and dacs_mutex_try_lock().