Subject: compat_13_machdep.c
To: None <port-alpha@netbsd.org>
From: Matthew Jacob <mjacob@nas.nasa.gov>
List: port-alpha
Date: 09/16/1998 13:10:47
Index: compat_13_machdep.c
===================================================================
RCS file: /cvsroot/src/sys/arch/alpha/alpha/compat_13_machdep.c,v
retrieving revision 1.1
diff -c -r1.1 compat_13_machdep.c
*** compat_13_machdep.c	1998/09/13 01:51:29	1.1
--- compat_13_machdep.c	1998/09/16 20:18:23
***************
*** 74,83 ****
--- 74,85 ----
  	 * program jumps out of a signal handler.
  	 */
  	scp = SCARG(uap, sigcntxp);
+ #if	0
  #ifdef DEBUG
  	if (sigdebug & SDB_FOLLOW)
  	    printf("sigreturn: pid %d, scp %p\n", p->p_pid, scp);
  #endif
+ #endif
  	if (ALIGN(scp) != (u_int64_t)scp)
  		return (EINVAL);
  
***************
*** 116,124 ****
--- 118,128 ----
  	native_sigset13_to_sigset(&mask13, &mask);
  	(void) sigprocmask1(p, SIG_SETMASK, &mask, 0);
  
+ #if	0
  #ifdef DEBUG
  	if (sigdebug & SDB_FOLLOW)
  		printf("sigreturn(%d): returns\n", p->p_pid);
+ #endif
  #endif
  	return (EJUSTRETURN);
  }