summaryrefslogtreecommitdiff
path: root/arch/m68k
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2019-10-28 15:56:50 -0400
committerRich Felker <dalias@aerifal.cx>2019-10-28 15:56:50 -0400
commitf7f12e4cf2a918bb9133d93cce6d43a2df9f59d1 (patch)
treec6ff2568d98364fefe8ff7510c3e692784298b85 /arch/m68k
parent06d4075a50b84d4b80e09eb5662fc1153bd559f7 (diff)
downloadmusl-f7f12e4cf2a918bb9133d93cce6d43a2df9f59d1.tar.gz
add missing m68k user.h/procfs.h regset types
Diffstat (limited to 'arch/m68k')
-rw-r--r--arch/m68k/bits/user.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/m68k/bits/user.h b/arch/m68k/bits/user.h
index 9a4ca128..6a443919 100644
--- a/arch/m68k/bits/user.h
+++ b/arch/m68k/bits/user.h
@@ -27,6 +27,11 @@ struct user {
char u_comm[32];
};
+#define ELF_NGREG 20
+typedef unsigned long elf_greg_t;
+typedef elf_greg_t elf_gregset_t[ELF_NGREG];
+typedef struct user_m68kfp_struct elf_fpregset_t;
+
#define NBPG 4096
#define UPAGES 1
#define HOST_TEXT_START_ADDR (u.start_code)