2009-01-14 Kai Tietz <kai.tietz@onevision.com>
* mingw-ser.c (console_select_thread): Add return to make compiler happy. (pipe_select_thread): Likewise. (file_select_thread): Likewise.
This commit is contained in:
parent
4ca47a519d
commit
a32d7317c7
@ -1,3 +1,10 @@
|
|||||||
|
2009-01-14 Kai Tietz <kai.tietz@onevision.com>
|
||||||
|
|
||||||
|
* mingw-ser.c (console_select_thread): Add return to make
|
||||||
|
compiler happy.
|
||||||
|
(pipe_select_thread): Likewise.
|
||||||
|
(file_select_thread): Likewise.
|
||||||
|
|
||||||
2009-01-14 Pedro Alves <pedro@codesourcery.com>
|
2009-01-14 Pedro Alves <pedro@codesourcery.com>
|
||||||
|
|
||||||
* mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from
|
* mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from
|
||||||
|
@ -573,6 +573,7 @@ console_select_thread (void *arg)
|
|||||||
|
|
||||||
SetEvent(state->have_stopped);
|
SetEvent(state->have_stopped);
|
||||||
}
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
@ -633,6 +634,7 @@ pipe_select_thread (void *arg)
|
|||||||
|
|
||||||
SetEvent (state->have_stopped);
|
SetEvent (state->have_stopped);
|
||||||
}
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static DWORD WINAPI
|
static DWORD WINAPI
|
||||||
@ -657,6 +659,7 @@ file_select_thread (void *arg)
|
|||||||
|
|
||||||
SetEvent (state->have_stopped);
|
SetEvent (state->have_stopped);
|
||||||
}
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user