diff options
author | Christopher Faylor <me@cgf.cx> | 2004-02-18 20:48:38 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-02-18 20:48:38 +0000 |
commit | 2d6c4a1a65051b08422c1503ba648e9cee0a0acc (patch) | |
tree | 6522f4939381a9e893e842f0bf0a991275f34a09 /winsup/cygwin/config | |
parent | a682de34be3a3e6f1270a4b0e1e5288e09140abf (diff) | |
download | cygnal-2d6c4a1a65051b08422c1503ba648e9cee0a0acc.tar.gz cygnal-2d6c4a1a65051b08422c1503ba648e9cee0a0acc.tar.bz2 cygnal-2d6c4a1a65051b08422c1503ba648e9cee0a0acc.zip |
* gendef (stabilize_sig_stack): New function.
(setjmp): Import, add sig stack handling. Store sig stack info.
(longjmp): Call stabilize_sig_stack. Restore sig stack info.
* config/i386/setjmp.c: Remove.
Diffstat (limited to 'winsup/cygwin/config')
-rw-r--r-- | winsup/cygwin/config/i386/setjmp.c | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/winsup/cygwin/config/i386/setjmp.c b/winsup/cygwin/config/i386/setjmp.c deleted file mode 100644 index 9104c2c83..000000000 --- a/winsup/cygwin/config/i386/setjmp.c +++ /dev/null @@ -1,48 +0,0 @@ -/* setjmp.c - - Copyright 1996, 1998, 1999, 2000, 2001 Red Hat, Inc. - -This file is part of Cygwin. - -This software is a copyrighted work licensed under the terms of the -Cygwin license. Please consult the file "CYGWIN_LICENSE" for -details. */ - -#ifdef __i386__ - -#if 1 -asm(" .globl _setjmp \n" -"_setjmp: \n" -" pushl %ebp \n" -" movl %esp,%ebp \n" -" pushl %edi \n" -" movl 8(%ebp),%edi \n" -" movl %eax,0(%edi) \n" -" movl %ebx,4(%edi) \n" -" movl %ecx,8(%edi) \n" -" movl %edx,12(%edi) \n" -" movl %esi,16(%edi) \n" -" movl -4(%ebp),%eax \n" -" movl %eax,20(%edi) \n" -" movl 0(%ebp),%eax \n" -" movl %eax,24(%edi) \n" -" movl %esp,%eax \n" -" addl $12,%eax \n" -" movl %eax,28(%edi) \n" -" movl 4(%ebp),%eax \n" -" movl %eax,32(%edi) \n" -" movw %es, %ax \n" -" movw %ax, 36(%edi) \n" -" movw %fs, %ax \n" -" movw %ax, 38(%edi) \n" -" movw %gs, %ax \n" -" movw %ax, 40(%edi) \n" -" movw %ss, %ax \n" -" movw %ax, 42(%edi) \n" -" popl %edi \n" -" movl $0,%eax \n" -" leave \n" -" ret \n"); -#endif - -#endif /* __i386__ */ |