/src/unix/uv-eio.h

http://github.com/joyent/libuv · C Header · 13 lines · 5 code · 2 blank · 6 comment · 0 complexity · b6e9262273bf3e15c44f52925b0c1279 MD5 · raw file

  1. /* This header is private to libuv */
  2. #ifndef UV_EIO_H_
  3. #define UV_EIO_H_
  4. #include "eio.h"
  5. /*
  6. * Call this function to integrate libeio into the libuv event loop. It is
  7. * safe to call more than once.
  8. * TODO: uv_eio_deinit
  9. */
  10. void uv_eio_init(uv_loop_t*);
  11. #endif