summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-09-25 07:15:06 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-09-25 07:15:06 +0000
commit1f19f89c6cba9c5e90f541e31e347bf84afd1ec8 (patch)
tree19d87334be88d923ec8f58f5ad0399747625fb47
parent0c551984c71641a590b8ee6b2f57d51d321384e7 (diff)
Add a bunch of relocation types.
-rw-r--r--sys/arch/sparc64/include/reloc.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/sys/arch/sparc64/include/reloc.h b/sys/arch/sparc64/include/reloc.h
index ad6b36bbcd9..39f296f0096 100644
--- a/sys/arch/sparc64/include/reloc.h
+++ b/sys/arch/sparc64/include/reloc.h
@@ -1,9 +1,19 @@
-/* $OpenBSD: reloc.h,v 1.1 2001/09/24 23:36:47 art Exp $ */
+/* $OpenBSD: reloc.h,v 1.2 2001/09/25 07:15:05 art Exp $ */
#ifndef _MACH_RELOC_H_
#define _MACH_RELOC_H_
+#define RELOC_NONE 0
+
+#define RELOC_COPY 19
+#define RELOC_GLOB_DAT 20
+#define RELOC_JMP_SLOT 21
#define RELOC_RELATIVE 22
+#define RELOC_64 32
+
+#define RELOC_UA64 54
+
+
#endif /* _MACH_RELOC_H_ */