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