Deleted Added
full compact
svr4_signal.h (43412) svr4_signal.h (48620)
1/*
2 * Copyright (c) 1998 Mark Newton
3 * Copyright (c) 1994 Christos Zoulas
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

89#define SVR4_SIG_UNBLOCK 2
90#define SVR4_SIG_SETMASK 3
91
92typedef struct {
93 u_long bits[4];
94} svr4_sigset_t;
95
96struct svr4_sigaction {
1/*
2 * Copyright (c) 1998 Mark Newton
3 * Copyright (c) 1994 Christos Zoulas
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

89#define SVR4_SIG_UNBLOCK 2
90#define SVR4_SIG_SETMASK 3
91
92typedef struct {
93 u_long bits[4];
94} svr4_sigset_t;
95
96struct svr4_sigaction {
97 int sa_flags;
98 svr4_sig_t sa_handler;
99 svr4_sigset_t sa_mask;
100 int sa_reserved[2];
97 int ssa_flags;
98 svr4_sig_t ssa_handler;
99 svr4_sigset_t ssa_mask;
100 int ssa_reserved[2];
101};
102
103struct svr4_sigaltstack {
104 char *ss_sp;
105 int ss_size;
106 int ss_flags;
107};
108

--- 22 unchanged lines hidden ---
101};
102
103struct svr4_sigaltstack {
104 char *ss_sp;
105 int ss_size;
106 int ss_flags;
107};
108

--- 22 unchanged lines hidden ---