2 |
|
* paranoia.cpp - Check undocumented features of the underlying |
3 |
|
* kernel that SheepShaver relies upon |
4 |
|
* |
5 |
< |
* SheepShaver (C) 1997-2005 Christian Bauer and Marc Hellwig |
5 |
> |
* SheepShaver (C) 1997-2008 Christian Bauer and Marc Hellwig |
6 |
|
* |
7 |
|
* This program is free software; you can redistribute it and/or modify |
8 |
|
* it under the terms of the GNU General Public License as published by |
85 |
|
exit(1); |
86 |
|
} |
87 |
|
|
88 |
< |
struct sigaltstack old_stack; |
89 |
< |
struct sigaltstack new_stack; |
88 |
> |
stack_t old_stack; |
89 |
> |
stack_t new_stack; |
90 |
|
new_stack.ss_sp = (char *)sig_stack; |
91 |
|
new_stack.ss_flags = 0; |
92 |
|
new_stack.ss_size = SIG_STACK_SIZE; |