summaryrefslogtreecommitdiffstats
path: root/src/arch/x86_64/include/bits/setjmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86_64/include/bits/setjmp.h')
-rw-r--r--src/arch/x86_64/include/bits/setjmp.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/arch/x86_64/include/bits/setjmp.h b/src/arch/x86_64/include/bits/setjmp.h
new file mode 100644
index 000000000..adfb869ea
--- /dev/null
+++ b/src/arch/x86_64/include/bits/setjmp.h
@@ -0,0 +1,28 @@
+#ifndef _BITS_SETJMP_H
+#define _BITS_SETJMP_H
+
+FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
+
+#include <stdint.h>
+
+/** A jump buffer */
+typedef struct {
+ /** Saved return address */
+ uint64_t retaddr;
+ /** Saved stack pointer */
+ uint64_t stack;
+ /** Saved %rbx */
+ uint64_t rbx;
+ /** Saved %rbp */
+ uint64_t rbp;
+ /** Saved %r12 */
+ uint64_t r12;
+ /** Saved %r13 */
+ uint64_t r13;
+ /** Saved %r14 */
+ uint64_t r14;
+ /** Saved %r15 */
+ uint64_t r15;
+} jmp_buf[1];
+
+#endif /* _BITS_SETJMP_H */