0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

Fix the MinGW build

This commit is contained in:
Henry Rawas 2011-06-28 13:32:35 -07:00 committed by Bert Belder
parent 8cb5338f35
commit 4e1e60fbf0
3 changed files with 4 additions and 4 deletions

View File

@ -124,7 +124,7 @@ class ChildProcess : ObjectWrap {
static void watch(ChildProcess *child);
static void CALLBACK watch_wait_callback(void *data, BOOLEAN didTimeout);
static void notify_spawn_failure(ChildProcess *child);
static void notify_exit(uv_handle_t* watcher, int status);
static void notify_exit(uv_async_t* watcher, int status);
static int do_kill(ChildProcess *child, int sig);static void close_stdio_handles(ChildProcess *child);
int pid_;

View File

@ -351,7 +351,7 @@ void ChildProcess::close_stdio_handles(ChildProcess *child) {
// Called from the main thread
void ChildProcess::notify_exit(uv_handle_t* watcher, int status) {
void ChildProcess::notify_exit(uv_async_t* watcher, int status) {
// Get the child process, then release the lock
ChildProcess *child = watcher_status.child;

View File

@ -493,8 +493,8 @@ static inline void tty_emit_error(Handle<Value> err) {
}
static void tty_poll(uv_handle_t* handle, int status) {
assert((uv_async_t*) handle == &tty_avail_notifier);
static void tty_poll(uv_async_t* handle, int status) {
assert(handle == &tty_avail_notifier);
assert(status == 0);
HandleScope scope;