* sol-thread.c (sol_thread_notice_signals): Use PIDGET when
authorPeter Schauer <Peter.Schauer@mytum.de>
Fri, 18 Sep 1998 14:57:16 +0000 (14:57 +0000)
committerPeter Schauer <Peter.Schauer@mytum.de>
Fri, 18 Sep 1998 14:57:16 +0000 (14:57 +0000)
passing pid down to procfs_notice_signals.

gdb/ChangeLog
gdb/sol-thread.c

index e7f0f8d8a2c9d584c14a1d11d8584cf18bdc8564..2e16c5764e0b782ce2eaf2ec09dd830554f0e695 100644 (file)
@@ -1,3 +1,8 @@
+Fri Sep 18 07:53:08 1998  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
+
+       * sol-thread.c (sol_thread_notice_signals):  Use PIDGET when
+       passing pid down to procfs_notice_signals.
+
 Wed Sep 16 14:57:14 1998  Stu Grossman  <grossman@babylon-5.cygnus.com>
 
        * stabsread.c (resolve_symbol_reference):  Return 1 on success, 0 on
index 88836feae0184631b2a199e16cdd3ac90c67a0ce..3479aab2efa18b8fed3792cfc71cbef952255310 100644 (file)
@@ -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.  */