From 96749f4d5ca2e27c5daeac508a44d3f47663c38b Mon Sep 17 00:00:00 2001 From: jb Date: Thu, 30 Apr 1998 09:30:50 +0000 Subject: The syscall that creates a kernel thread is coming, but it doesn't use the default syscall asm, so add it to NOASM. The other syscalls that manipulate kernel threads use the default asm code, so they just get built automatically. --- lib/libc/amd64/sys/Makefile.inc | 7 +++---- lib/libc/i386/sys/Makefile.inc | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) (limited to 'lib/libc') diff --git a/lib/libc/amd64/sys/Makefile.inc b/lib/libc/amd64/sys/Makefile.inc index 82e4e1f..52ce012 100644 --- a/lib/libc/amd64/sys/Makefile.inc +++ b/lib/libc/amd64/sys/Makefile.inc @@ -1,16 +1,15 @@ # from: Makefile.inc,v 1.1 1993/09/03 19:04:23 jtc Exp -# $Id: Makefile.inc,v 1.7 1997/10/16 14:41:25 bde Exp $ +# $Id: Makefile.inc,v 1.8 1998/03/09 07:36:56 jb Exp $ SRCS+= i386_get_ldt.c i386_set_ldt.c -# _thread_create.S - MDASM= Ovfork.S brk.S cerror.S exect.S fork.S pipe.S \ ptrace.S reboot.S rfork.S sbrk.S setlogin.S sigpending.S \ sigprocmask.S sigreturn.S sigsuspend.S syscall.S # Don't generate default code for these syscalls: -NOASM= __semctl.o break.o exit.o ftruncate.o getdomainname.o getlogin.o \ +NOASM= __semctl.o __thread_create.o \ + break.o exit.o ftruncate.o getdomainname.o getlogin.o \ lseek.o mlockall.o mmap.o msgctl.o msgget.o msgrcv.o msgsnd.o \ munlockall.o openbsd_poll.o semconfig.o semget.o semop.o \ setdomainname.o shmat.o shmctl.o shmdt.o shmget.o sstk.o \ diff --git a/lib/libc/i386/sys/Makefile.inc b/lib/libc/i386/sys/Makefile.inc index 82e4e1f..52ce012 100644 --- a/lib/libc/i386/sys/Makefile.inc +++ b/lib/libc/i386/sys/Makefile.inc @@ -1,16 +1,15 @@ # from: Makefile.inc,v 1.1 1993/09/03 19:04:23 jtc Exp -# $Id: Makefile.inc,v 1.7 1997/10/16 14:41:25 bde Exp $ +# $Id: Makefile.inc,v 1.8 1998/03/09 07:36:56 jb Exp $ SRCS+= i386_get_ldt.c i386_set_ldt.c -# _thread_create.S - MDASM= Ovfork.S brk.S cerror.S exect.S fork.S pipe.S \ ptrace.S reboot.S rfork.S sbrk.S setlogin.S sigpending.S \ sigprocmask.S sigreturn.S sigsuspend.S syscall.S # Don't generate default code for these syscalls: -NOASM= __semctl.o break.o exit.o ftruncate.o getdomainname.o getlogin.o \ +NOASM= __semctl.o __thread_create.o \ + break.o exit.o ftruncate.o getdomainname.o getlogin.o \ lseek.o mlockall.o mmap.o msgctl.o msgget.o msgrcv.o msgsnd.o \ munlockall.o openbsd_poll.o semconfig.o semget.o semop.o \ setdomainname.o shmat.o shmctl.o shmdt.o shmget.o sstk.o \ -- cgit v1.1