about summary refs log tree commit diff
path: root/arch/riscv64/bits/sem.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/riscv64/bits/sem.h')
-rw-r--r--arch/riscv64/bits/sem.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/riscv64/bits/sem.h b/arch/riscv64/bits/sem.h
new file mode 100644
index 00000000..5f93c12d
--- /dev/null
+++ b/arch/riscv64/bits/sem.h
@@ -0,0 +1,9 @@
+struct semid_ds {
+	struct ipc_perm sem_perm;
+	time_t sem_otime;
+	time_t sem_ctime;
+	unsigned short sem_nsems;
+	char __sem_nsems_pad[sizeof(time_t)-sizeof(short)];
+	time_t __unused3;
+	time_t __unused4;
+};