Chris
Chris

Reputation: 23

is epoll (epoll_wait, etc.) available for iOS?

I'm just embarking on porting some existing POSIX compliant code to iOS. From what I gather pthreads are available (good), but the compiler is not finding . Is epoll available for iOS?

Upvotes: 1

Views: 2542

Answers (1)

user149341
user149341

Reputation:

No. epoll is a Linux-specific system call.

The closest equivalent on the Darwin kernel is kqueue, but I strongly suspect that's considered SPI (and hence off-limits) on iOS.

Upvotes: 4

Related Questions