svn commit: r284924 - head/sys/compat/svr4

Konstantin Belousov kib at FreeBSD.org
Mon Jun 29 10:33:05 UTC 2015


Author: kib
Date: Mon Jun 29 10:33:04 2015
New Revision: 284924
URL: https://svnweb.freebsd.org/changeset/base/284924

Log:
  svr4 emulator has custom sendsig() implementation, it does not use
  sv_sigtbl.
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week

Modified:
  head/sys/compat/svr4/svr4_sysvec.c

Modified: head/sys/compat/svr4/svr4_sysvec.c
==============================================================================
--- head/sys/compat/svr4/svr4_sysvec.c	Mon Jun 29 10:31:12 2015	(r284923)
+++ head/sys/compat/svr4/svr4_sysvec.c	Mon Jun 29 10:33:04 2015	(r284924)
@@ -167,8 +167,8 @@ struct sysentvec svr4_sysvec = {
 	.sv_size	= SVR4_SYS_MAXSYSCALL,
 	.sv_table	= svr4_sysent,
 	.sv_mask	= 0xff,
-	.sv_sigsize	= SVR4_NSIG-1, /* NB: signal trans table indexed with signno-1 */
-	.sv_sigtbl	= bsd_to_svr4_sig+1,
+	.sv_sigsize	= 0,
+	.sv_sigtbl	= NULL,
 	.sv_errsize	= ELAST,  /* ELAST */
 	.sv_errtbl	= bsd_to_svr4_errno,
 	.sv_transtrap	= NULL,


More information about the svn-src-head mailing list