diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2009-01-14 20:21:09 +0000 |
---|---|---|
committer | Kai Tietz <kai.tietz@onevision.com> | 2009-01-14 20:21:09 +0000 |
commit | a32d7317c7ae58c986b499ad11028dbf49a15da1 (patch) | |
tree | 83e7ef9d9ac2f03b705334ae367492c4994d45f6 /gdb | |
parent | 4ca47a519d18f4a3b14bad8bff554a8d450c2517 (diff) | |
download | gdb-a32d7317c7ae58c986b499ad11028dbf49a15da1.zip gdb-a32d7317c7ae58c986b499ad11028dbf49a15da1.tar.gz gdb-a32d7317c7ae58c986b499ad11028dbf49a15da1.tar.bz2 |
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.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/ser-mingw.c | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index cbcd0e6..0566235 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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> * mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from diff --git a/gdb/ser-mingw.c b/gdb/ser-mingw.c index 7ed48c4..3b3e273 100644 --- a/gdb/ser-mingw.c +++ b/gdb/ser-mingw.c @@ -573,6 +573,7 @@ console_select_thread (void *arg) SetEvent(state->have_stopped); } + return 0; } static int @@ -633,6 +634,7 @@ pipe_select_thread (void *arg) SetEvent (state->have_stopped); } + return 0; } static DWORD WINAPI @@ -657,6 +659,7 @@ file_select_thread (void *arg) SetEvent (state->have_stopped); } + return 0; } static void |