Skip to content
Snippets Groups Projects
Commit 442dab4b authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Merge branch 'make-futex-32bit' into 'master'

[SpuriousFutexSemaphore] futex are 32 bits on all platforms

See merge request !300
parents 0ff7ac2e 45202cf8
No related branches found
No related tags found
1 merge request!300[SpuriousFutexSemaphore] futex are 32 bits on all platforms
Pipeline #74571 passed
......@@ -20,7 +20,7 @@ namespace emper::lib::sync {
// by only using a single atomic operation and a possible system call per method.
class SpuriousFutexSemaphore {
public:
using CounterType = long;
using CounterType = int32_t;
private:
// >= 0 means no waiters
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment