mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
261 B
14 lines
261 B
14 years ago
|
/* 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(void);
|
||
|
#endif
|