aix-thread: Fix getthrds declaration and call.

gdb/ChangeLog:

        * aix-thread.c (getthrds): Fix type of 4th parameter.
        (get_signaled_thread): Change type of variable ktid to tid_t.
This commit is contained in:
Joel Brobecker 2012-12-06 04:57:09 +00:00
parent 9e69ed506a
commit eff44fea8c
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2012-12-06 Joel Brobecker <brobecker@adacore.com>
* aix-thread.c (getthrds): Fix type of 4th parameter.
(get_signaled_thread): Change type of variable ktid to tid_t.
2012-12-06 Hui Zhu <hui_zhu@mentor.com>
* dwarf2loc.c (dwarf_expr_frame_base): Add check for the return

View File

@ -59,7 +59,7 @@
#include <sys/pthdebug.h>
#if !HAVE_DECL_GETTHRDS
extern int getthrds (pid_t, struct thrdsinfo64 *, int, pthdb_tid_t *, int);
extern int getthrds (pid_t, struct thrdsinfo64 *, int, tid_t *, int);
#endif
/* Whether to emit debugging output. */
@ -648,7 +648,7 @@ static pthdb_tid_t
get_signaled_thread (void)
{
struct thrdsinfo64 thrinf;
pthdb_tid_t ktid = 0;
tid_t ktid = 0;
int result = 0;
while (1)