55 lines
1.8 KiB
Diff
55 lines
1.8 KiB
Diff
commit b3e9ec5626d474c58e683a41d09576297d4acd3d
|
|
Author: Shea Levy <shea@shealevy.com>
|
|
Date: Sat Feb 24 21:12:44 2018 -0500
|
|
|
|
syscfg: Add lock-obj-pub file for riscv64-unknown-linux-gnu.
|
|
|
|
* src/syscfg/lock-obj-pub.riscv64-unknown-linux-gnu.h: new.
|
|
* src/Makefile.am (lock_obj_pub): Add it.
|
|
|
|
Signed-off-by: Shea Levy <shea@shealevy.com>
|
|
|
|
diff --git a/src/Makefile.am b/src/Makefile.am
|
|
index 4446612..5a8cc43 100644
|
|
--- a/src/Makefile.in
|
|
+++ b/src/Makefile.in
|
|
@@ -65,6 +65,7 @@ lock_obj_pub = \
|
|
syscfg/lock-obj-pub.powerpc64-unknown-linux-gnu.h \
|
|
syscfg/lock-obj-pub.powerpc64le-unknown-linux-gnu.h \
|
|
syscfg/lock-obj-pub.powerpc-unknown-linux-gnuspe.h \
|
|
+ syscfg/lock-obj-pub.riscv64-unknown-linux-gnu.h \
|
|
syscfg/lock-obj-pub.s390x-ibm-linux-gnu.h \
|
|
syscfg/lock-obj-pub.sh3-unknown-linux-gnu.h \
|
|
syscfg/lock-obj-pub.sh4-unknown-linux-gnu.h \
|
|
diff --git a/src/syscfg/lock-obj-pub.riscv64-unknown-linux-gnu.h b/src/syscfg/lock-obj-pub.riscv64-unknown-linux-gnu.h
|
|
new file mode 100644
|
|
index 0000000..8aab9d6
|
|
--- /dev/null
|
|
+++ b/src/syscfg/lock-obj-pub.riscv64-unknown-linux-gnu.h
|
|
@@ -0,0 +1,25 @@
|
|
+## lock-obj-pub.riscv64-unknown-linux-gnu.h
|
|
+## File created by gen-posix-lock-obj - DO NOT EDIT
|
|
+## To be included by mkheader into gpg-error.h
|
|
+
|
|
+typedef struct
|
|
+{
|
|
+ long _vers;
|
|
+ union {
|
|
+ volatile char _priv[40];
|
|
+ long _x_align;
|
|
+ long *_xp_align;
|
|
+ } u;
|
|
+} gpgrt_lock_t;
|
|
+
|
|
+#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
|
|
+ 0,0,0,0,0,0,0,0, \
|
|
+ 0,0,0,0,0,0,0,0, \
|
|
+ 0,0,0,0,0,0,0,0, \
|
|
+ 0,0,0,0,0,0,0,0}}}
|
|
+##
|
|
+## Local Variables:
|
|
+## mode: c
|
|
+## buffer-read-only: t
|
|
+## End:
|
|
+##
|