Deleted Added
full compact
linux.h (46163) linux.h (48620)
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

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

20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
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 *
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

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

20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
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 * $Id: linux.h,v 1.26 1998/12/30 21:19:59 sos Exp $
28 * $Id: linux.h,v 1.27 1999/04/29 04:37:56 luoqi Exp $
29 */
30
31#ifndef _I386_LINUX_LINUX_H_
32#define _I386_LINUX_LINUX_H_
33
34#include <i386/linux/linux_syscall.h>
35
36typedef unsigned short linux_uid_t;

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

45typedef long linux_off_t;
46typedef struct {
47 long val[2];
48} linux_fsid_t;
49typedef int linux_pid_t;
50typedef unsigned long linux_sigset_t;
51typedef void (*linux_handler_t)(int);
52typedef struct {
29 */
30
31#ifndef _I386_LINUX_LINUX_H_
32#define _I386_LINUX_LINUX_H_
33
34#include <i386/linux/linux_syscall.h>
35
36typedef unsigned short linux_uid_t;

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

45typedef long linux_off_t;
46typedef struct {
47 long val[2];
48} linux_fsid_t;
49typedef int linux_pid_t;
50typedef unsigned long linux_sigset_t;
51typedef void (*linux_handler_t)(int);
52typedef struct {
53 void (*sa_handler)(int);
54 linux_sigset_t sa_mask;
55 unsigned long sa_flags;
56 void (*sa_restorer)(void);
53 void (*lsa_handler)(int);
54 linux_sigset_t lsa_mask;
55 unsigned long lsa_flags;
56 void (*lsa_restorer)(void);
57} linux_sigaction_t;
58typedef int linux_key_t;
59
60/*
61 * The Linux sigcontext, pretty much a standard 386 trapframe.
62 */
63
64struct linux_sigcontext {

--- 626 unchanged lines hidden ---
57} linux_sigaction_t;
58typedef int linux_key_t;
59
60/*
61 * The Linux sigcontext, pretty much a standard 386 trapframe.
62 */
63
64struct linux_sigcontext {

--- 626 unchanged lines hidden ---