1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

Added check for HAS_EVENTFD

This commit is contained in:
Dennis Potter 2018-08-09 14:19:35 +02:00
parent 68a794681e
commit e467012a3b

View file

@ -115,7 +115,7 @@ ParameterizedTestParameters(queue_signalled, simple)
{ QUEUE_SIGNALLED_PTHREAD, consumer },
{ QUEUE_SIGNALLED_PTHREAD | QUEUE_SIGNALLED_PROCESS_SHARED, consumer },
{ QUEUE_SIGNALLED_POLLING, consumer },
#ifdef __linux__
#if defined(__linux__) && defined(HAS_EVENTFD)
{ QUEUE_SIGNALLED_EVENTFD, consumer },
{ QUEUE_SIGNALLED_EVENTFD, polled_consumer }
#endif