threadpool-ms-io-poll.h 278 B

1234567891011121314
  1. #pragma once
  2. #if NET_4_0
  3. #include "il2cpp-config.h"
  4. bool poll_init(int wakeup_pipe_fd);
  5. void poll_register_fd(int fd, int events, bool is_new);
  6. int poll_event_wait(void(*callback)(int fd, int events, void* user_data), void* user_data);
  7. void poll_remove_fd(int fd);
  8. #endif