aboutsummaryrefslogtreecommitdiff
path: root/gdb/sol-thread.c
diff options
context:
space:
mode:
authorPeter Schauer <Peter.Schauer@mytum.de>1998-09-18 14:57:16 +0000
committerPeter Schauer <Peter.Schauer@mytum.de>1998-09-18 14:57:16 +0000
commitd2fce7f74c166f3568e12fd1fed52e99b784df5c (patch)
tree0034190e166458e298b8dfa03fa1d2b3aad97504 /gdb/sol-thread.c
parentf5ec493e574b2ffcdc4fdef4339dff9c7c5de6bd (diff)
downloadgdb-d2fce7f74c166f3568e12fd1fed52e99b784df5c.zip
gdb-d2fce7f74c166f3568e12fd1fed52e99b784df5c.tar.gz
gdb-d2fce7f74c166f3568e12fd1fed52e99b784df5c.tar.bz2
* sol-thread.c (sol_thread_notice_signals): Use PIDGET when
passing pid down to procfs_notice_signals.
Diffstat (limited to 'gdb/sol-thread.c')
-rw-r--r--gdb/sol-thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c
index 88836fe..3479aab 100644
--- a/gdb/sol-thread.c
+++ b/gdb/sol-thread.c
@@ -822,7 +822,7 @@ static void
sol_thread_notice_signals (pid)
int pid;
{
- procfs_ops.to_notice_signals (pid);
+ procfs_ops.to_notice_signals (PIDGET (pid));
}
/* Fork an inferior process, and start debugging it with /proc. */