svr4 emulator has custom sendsig() implementation, it does not use

sv_sigtbl.

Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
This commit is contained in:
Konstantin Belousov 2015-06-29 10:33:04 +00:00
parent 773554f79e
commit 2a4734651c

View File

@ -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,