ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/Unix/paranoia.cpp
(Generate patch)

Comparing SheepShaver/src/Unix/paranoia.cpp (file contents):
Revision 1.3 by gbeauche, 2006-05-01T23:01:53Z vs.
Revision 1.5 by asvitkine, 2009-02-11T19:22:16Z

# Line 2 | Line 2
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
# Line 85 | Line 85 | void paranoia_check(void)
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;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines