about summary refs log tree commit diff
path: root/arch/mipsn32/bits/user.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mipsn32/bits/user.h')
-rw-r--r--arch/mipsn32/bits/user.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/mipsn32/bits/user.h b/arch/mipsn32/bits/user.h
new file mode 100644
index 00000000..60fa1fda
--- /dev/null
+++ b/arch/mipsn32/bits/user.h
@@ -0,0 +1,15 @@
+struct user {
+	unsigned long regs[102];
+	unsigned long u_tsize, u_dsize, u_ssize;
+	unsigned long long start_code, start_data, start_stack;
+	long long signal;
+	unsigned long long *u_ar0;
+	unsigned long long magic;
+	char u_comm[32];
+};
+
+#define ELF_NGREG 45
+#define ELF_NFPREG 33
+
+typedef unsigned long elf_greg_t, elf_gregset_t[ELF_NGREG];
+typedef double elf_fpreg_t, elf_fpregset_t[ELF_NFPREG];