~ubuntu-branches/ubuntu/precise/linux-lowlatency/precise

« back to all changes in this revision

Viewing changes to arch/x86/um/shared/sysdep/archsetjmp_32.h

  • Committer: Package Import Robot
  • Author(s): Alessio Igor Bogani
  • Date: 2011-10-26 11:13:05 UTC
  • Revision ID: package-import@ubuntu.com-20111026111305-tz023xykf0i6eosh
Tags: upstream-3.2.0
ImportĀ upstreamĀ versionĀ 3.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * arch/um/include/sysdep-i386/archsetjmp.h
 
3
 */
 
4
 
 
5
#ifndef _KLIBC_ARCHSETJMP_H
 
6
#define _KLIBC_ARCHSETJMP_H
 
7
 
 
8
struct __jmp_buf {
 
9
        unsigned int __ebx;
 
10
        unsigned int __esp;
 
11
        unsigned int __ebp;
 
12
        unsigned int __esi;
 
13
        unsigned int __edi;
 
14
        unsigned int __eip;
 
15
};
 
16
 
 
17
typedef struct __jmp_buf jmp_buf[1];
 
18
 
 
19
#define JB_IP __eip
 
20
#define JB_SP __esp
 
21
 
 
22
#endif                          /* _SETJMP_H */