diff options
author | Joel Brobecker <brobecker@gnat.com> | 2008-04-29 00:52:26 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2008-04-29 00:52:26 +0000 |
commit | a0fe373c768a198d0eb78aecedcbe809708dc921 (patch) | |
tree | 18555f62897c6ba91110fd075921373ce338abea | |
parent | 007bcda18c0c4f95ab1e6f49c18220f8b35a7648 (diff) | |
download | binutils-gdb-a0fe373c768a198d0eb78aecedcbe809708dc921.tar.gz |
* terminal.h (create_tty_session): Fix return type.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/terminal.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e58d0c27340..016a213f119 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2008-04-28 Joel Brobecker <brobecker@adacore.com> + + * terminal.h (create_tty_session): Fix return type. + 2008-04-26 Vladimir Prus <vladimir@codesourcery.com> * mi/mi-interp.c (mi_new_thread): Quote the thread id. diff --git a/gdb/terminal.h b/gdb/terminal.h index 743be6c1dc0..d7a6a9f0524 100644 --- a/gdb/terminal.h +++ b/gdb/terminal.h @@ -82,7 +82,7 @@ extern void new_tty (void); a given run of GDB. In inflow.c. */ extern int job_control; -extern int create_tty_session (void); +extern pid_t create_tty_session (void); /* Set the process group of the caller to its own pid, or do nothing if we lack job control. */ |