Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libpthread make it compile with PTHREAD_SIG_DEBUG again



details:   https://anonhg.NetBSD.org/src/rev/5b226d489172
branches:  trunk
changeset: 551816:5b226d489172
user:      drochner <drochner%NetBSD.org@localhost>
date:      Fri Sep 12 15:31:00 2003 +0000

description:
make it compile with PTHREAD_SIG_DEBUG again

diffstat:

 lib/libpthread/pthread_sig.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 44326078efea -r 5b226d489172 lib/libpthread/pthread_sig.c
--- a/lib/libpthread/pthread_sig.c      Fri Sep 12 15:29:48 2003 +0000
+++ b/lib/libpthread/pthread_sig.c      Fri Sep 12 15:31:00 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pthread_sig.c,v 1.19 2003/09/12 10:10:39 kleink Exp $  */
+/*     $NetBSD: pthread_sig.c,v 1.20 2003/09/12 15:31:00 drochner Exp $        */
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: pthread_sig.c,v 1.19 2003/09/12 10:10:39 kleink Exp $");
+__RCSID("$NetBSD: pthread_sig.c,v 1.20 2003/09/12 15:31:00 drochner Exp $");
 
 /* We're interposing a specific version of the signal interface. */
 #define        __LIBC12_SOURCE__
@@ -906,7 +906,7 @@
     siginfo_t *info, ucontext_t *uc)
 {
        SDPRINTF(("(tramp %p) sig %d uc %p oldmask %08x\n", 
-           pthread__self(), si->si_signo, uc, uc->uc_stack.ss_mask->__bits[0]));
+           pthread__self(), info->si_signo, uc, uc->uc_sigmask.__bits[0]));
 
 #ifdef __HAVE_SIGINFO
        (*handler)(info->si_signo, info, uc);



Home | Main Index | Thread Index | Old Index