| 197 | |
| 198 | #ifdef __linux__ |
| 199 | static int futex(volatile unsigned *uaddr, int futex_op, int val, |
| 200 | const struct timespec *timeout, int val3) |
| 201 | { |
| 202 | return syscall(SYS_futex, uaddr, futex_op, val, |
| 203 | timeout, uaddr, val3); |
| 204 | } |
| 205 | #endif |
| 206 | |
| 207 | class DeadlockDetector |
no outgoing calls
no test coverage detected