aboutsummaryrefslogtreecommitdiff
path: root/libc/src/unix/notbsd/linux/other/b64/x86_64.rs
diff options
context:
space:
mode:
authorDaniel Mueller <deso@posteo.net>2019-01-22 20:16:05 -0800
committerDaniel Mueller <deso@posteo.net>2019-01-22 20:16:05 -0800
commit4fcdf2022df38b37365ee5d948005ac08a1f1a83 (patch)
treec204c0959100390dc708ebdd977bf9daddb356de /libc/src/unix/notbsd/linux/other/b64/x86_64.rs
parent8b2d8818b26e7084cad240c48fd9ce7fc2519012 (diff)
downloadnitrocli-4fcdf2022df38b37365ee5d948005ac08a1f1a83.tar.gz
nitrocli-4fcdf2022df38b37365ee5d948005ac08a1f1a83.tar.bz2
Update libc crate to 0.2.47
This change updates the libc crate to version 0.2.47. Import subrepo libc/:libc at ce1dfcbf81bd74662b5cd02a9214818a0bfbbffa
Diffstat (limited to 'libc/src/unix/notbsd/linux/other/b64/x86_64.rs')
-rw-r--r--libc/src/unix/notbsd/linux/other/b64/x86_64.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/libc/src/unix/notbsd/linux/other/b64/x86_64.rs b/libc/src/unix/notbsd/linux/other/b64/x86_64.rs
index 43b8b9f..0d7137e 100644
--- a/libc/src/unix/notbsd/linux/other/b64/x86_64.rs
+++ b/libc/src/unix/notbsd/linux/other/b64/x86_64.rs
@@ -644,6 +644,31 @@ pub const ES: ::c_int = 24;
pub const FS: ::c_int = 25;
pub const GS: ::c_int = 26;
+// offsets in mcontext_t.gregs from sys/ucontext.h
+pub const REG_R8: ::c_int = 0;
+pub const REG_R9: ::c_int = 1;
+pub const REG_R10: ::c_int = 2;
+pub const REG_R11: ::c_int = 3;
+pub const REG_R12: ::c_int = 4;
+pub const REG_R13: ::c_int = 5;
+pub const REG_R14: ::c_int = 6;
+pub const REG_R15: ::c_int = 7;
+pub const REG_RDI: ::c_int = 8;
+pub const REG_RSI: ::c_int = 9;
+pub const REG_RBP: ::c_int = 10;
+pub const REG_RBX: ::c_int = 11;
+pub const REG_RDX: ::c_int = 12;
+pub const REG_RAX: ::c_int = 13;
+pub const REG_RCX: ::c_int = 14;
+pub const REG_RSP: ::c_int = 15;
+pub const REG_RIP: ::c_int = 16;
+pub const REG_EFL: ::c_int = 17;
+pub const REG_CSGSFS: ::c_int = 18;
+pub const REG_ERR: ::c_int = 19;
+pub const REG_TRAPNO: ::c_int = 20;
+pub const REG_OLDMASK: ::c_int = 21;
+pub const REG_CR2: ::c_int = 22;
+
extern {
pub fn getcontext(ucp: *mut ucontext_t) -> ::c_int;
pub fn setcontext(ucp: *const ucontext_t) -> ::c_int;