Deleted Added
full compact
linux_sysvec.c (183322) linux_sysvec.c (184058)
1/*-
2 * Copyright (c) 1994-1996 S�ren Schmidt
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 13 unchanged lines hidden (view full) ---

22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1994-1996 S�ren Schmidt
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 13 unchanged lines hidden (view full) ---

22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/sys/i386/linux/linux_sysvec.c 183322 2008-09-24 10:14:37Z kib $");
30__FBSDID("$FreeBSD: head/sys/i386/linux/linux_sysvec.c 184058 2008-10-19 10:02:26Z kib $");
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/exec.h>
35#include <sys/fcntl.h>
36#include <sys/imgact.h>
37#include <sys/imgact_aout.h>
38#include <sys/imgact_elf.h>

--- 279 unchanged lines hidden (view full) ---

318 bzero(&frame, sizeof(frame));
319
320 frame.sf_handler = catcher;
321 frame.sf_sig = sig;
322 frame.sf_siginfo = &fp->sf_si;
323 frame.sf_ucontext = &fp->sf_sc;
324
325 /* Fill in POSIX parts */
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/exec.h>
35#include <sys/fcntl.h>
36#include <sys/imgact.h>
37#include <sys/imgact_aout.h>
38#include <sys/imgact_elf.h>

--- 279 unchanged lines hidden (view full) ---

318 bzero(&frame, sizeof(frame));
319
320 frame.sf_handler = catcher;
321 frame.sf_sig = sig;
322 frame.sf_siginfo = &fp->sf_si;
323 frame.sf_ucontext = &fp->sf_sc;
324
325 /* Fill in POSIX parts */
326 frame.sf_si.lsi_signo = sig;
327 frame.sf_si.lsi_code = code;
328 frame.sf_si.lsi_addr = ksi->ksi_addr;
326 ksiginfo_to_lsiginfo(ksi, &frame.sf_si, sig);
329
330 /*
331 * Build the signal context to be used by sigreturn.
332 */
333 frame.sf_sc.uc_flags = 0; /* XXX ??? */
334 frame.sf_sc.uc_link = NULL; /* XXX ??? */
335
336 frame.sf_sc.uc_stack.ss_sp = td->td_sigstk.ss_sp;

--- 642 unchanged lines hidden ---
327
328 /*
329 * Build the signal context to be used by sigreturn.
330 */
331 frame.sf_sc.uc_flags = 0; /* XXX ??? */
332 frame.sf_sc.uc_link = NULL; /* XXX ??? */
333
334 frame.sf_sc.uc_stack.ss_sp = td->td_sigstk.ss_sp;

--- 642 unchanged lines hidden ---