summaryrefslogtreecommitdiff
path: root/lib/csu/m88k
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2016-03-20 02:32:41 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2016-03-20 02:32:41 +0000
commit3924b0c2475a56d000c0c5cae2ca1660a97b489b (patch)
treed5f23aa4e0c292f35123ecaf9761158d7c5d71e6 /lib/csu/m88k
parent4621abcf30c5f4ecef9340db8259e51bfabf6529 (diff)
Rearrange C runtime bits: now that ld.so exports environ and __progname,
move their definitions and initialization in static links to libc.a Make crt0 always invoke a new func _csu_finish() in libc to process the auxv and to either register the ld.so cleanup function (in dynamic links) or initialize environ and __progname and do MC_DISABLE_KBIND (in static links). In libc, get pagesize from auxv; cache that between getpagesize() and sysconf(_SC_PAGESIZE) ok mpi@ "good time" deraadt@
Diffstat (limited to 'lib/csu/m88k')
-rw-r--r--lib/csu/m88k/md_init.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/lib/csu/m88k/md_init.h b/lib/csu/m88k/md_init.h
index a1d13552da7..0724b5c6669 100644
--- a/lib/csu/m88k/md_init.h
+++ b/lib/csu/m88k/md_init.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: md_init.h,v 1.3 2015/09/01 05:40:06 guenther Exp $ */
+/* $OpenBSD: md_init.h,v 1.4 2016/03/20 02:32:39 guenther Exp $ */
/*
* Copyright (c) 2012 Miodrag Vallat.
@@ -64,12 +64,3 @@
" addu %r4, %r4, 4 \n" \
" /* envp = argv + argc + 1 */ \n" \
" .previous");
-
-#include <sys/syscall.h>
-#define MD_DISABLE_KBIND \
- do { \
- register long syscall_num __asm("r13") = SYS_kbind; \
- register void *arg1 __asm("r2") = NULL; \
- __asm volatile("tb0 0, %%r0, 450; or %%r0, %%r0, %%r0" \
- : "+r" (arg1) : "r" (syscall_num) : "r3", "cc"); \
- } while (0)