Date: Mon, 29 Jun 2015 10:33:05 +0000 (UTC) From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r284924 - head/sys/compat/svr4 Message-ID: <201506291033.t5TAX5AZ043836@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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,
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506291033.t5TAX5AZ043836>