2015-04-29 16:31:42 +02:00
|
|
|
This library offers a CPU-based synchronization primitive compatible
|
|
|
|
with the X SyncFence objects that can be shared between processes
|
|
|
|
using file descriptor passing.
|
|
|
|
|
2015-09-25 01:34:16 +02:00
|
|
|
There are four underlying implementations:
|
2015-04-29 16:31:42 +02:00
|
|
|
|
|
|
|
1) On Linux, the library uses futexes
|
|
|
|
|
|
|
|
2) On FreeBSD, the library uses umtx
|
|
|
|
|
2015-09-25 01:34:16 +02:00
|
|
|
3) On NetBSD, the library uses POSIX semaphores (for now)
|
|
|
|
|
|
|
|
4) On other systems, the library uses posix mutexes and condition
|
2015-04-29 16:31:42 +02:00
|
|
|
variables.
|