From 33641076c593580a9b2c61127ae3000cf0e846b6 Mon Sep 17 00:00:00 2001 From: nate Date: Tue, 30 Jan 1996 05:55:20 +0000 Subject: Back out the thread_init code in order to allow -current to bootstrap from -stable, until a better solution is found. Submitted by: Consensus of mailing list and the almighty Jordan :) --- lib/csu/i386/crt0.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'lib/csu') diff --git a/lib/csu/i386/crt0.c b/lib/csu/i386/crt0.c index 2cd03c3..d36cc29 100644 --- a/lib/csu/i386/crt0.c +++ b/lib/csu/i386/crt0.c @@ -98,7 +98,6 @@ extern start() asm("start"); extern mcount() asm ("mcount"); extern int main(int argc, char **argv, char **envp); int __syscall(int syscall,...); -void _thread_init(); #ifdef MCRT0 void monstartup(void *low, void *high); #endif /* MCRT0 */ @@ -182,13 +181,6 @@ asm("eprol:"); monstartup(&eprol, &etext); #endif /* MCRT0 */ - /* - * Initialize the initial thread. - * This function might be a stub if libc does not - * contain thread support. - */ - _thread_init(); - asm ("__callmain:"); /* Defined for the benefit of debuggers */ exit(main(kfp->kargc, argv, environ)); } -- cgit v1.1