From 7af72ad7b60d165a4a68976a5f740d512e87238a Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Tue, 22 Jun 2004 04:29:59 +0000 Subject: [PATCH] Rebuild following marking link() as MPSAFE. --- sys/kern/init_sysent.c | 4 ++-- sys/kern/syscalls.c | 2 +- sys/sys/syscall.h | 2 +- sys/sys/syscall.mk | 2 +- sys/sys/sysproto.h | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index ecf50cbc5c7c..4bd5e95edce6 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/kern/syscalls.master,v 1.171 2004/04/05 10:15:53 dfr Exp + * created from FreeBSD: src/sys/kern/syscalls.master,v 1.172 2004/06/22 04:29:27 rwatson Exp */ #include "opt_compat.h" @@ -37,7 +37,7 @@ struct sysent sysent[] = { { SYF_MPSAFE | AS(close_args), (sy_call_t *)close }, /* 6 = close */ { SYF_MPSAFE | AS(wait_args), (sy_call_t *)wait4 }, /* 7 = wait4 */ { compat(SYF_MPSAFE | AS(ocreat_args),creat) }, /* 8 = old creat */ - { AS(link_args), (sy_call_t *)link }, /* 9 = link */ + { SYF_MPSAFE | AS(link_args), (sy_call_t *)link }, /* 9 = link */ { AS(unlink_args), (sy_call_t *)unlink }, /* 10 = unlink */ { 0, (sy_call_t *)nosys }, /* 11 = obsolete execv */ { AS(chdir_args), (sy_call_t *)chdir }, /* 12 = chdir */ diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index d644cfc6ed6e..a70a39c310c5 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/kern/syscalls.master,v 1.171 2004/04/05 10:15:53 dfr Exp + * created from FreeBSD: src/sys/kern/syscalls.master,v 1.172 2004/06/22 04:29:27 rwatson Exp */ const char *syscallnames[] = { diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index d7ca298d47db..936bf0686512 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/kern/syscalls.master,v 1.171 2004/04/05 10:15:53 dfr Exp + * created from FreeBSD: src/sys/kern/syscalls.master,v 1.172 2004/06/22 04:29:27 rwatson Exp */ #define SYS_syscall 0 diff --git a/sys/sys/syscall.mk b/sys/sys/syscall.mk index 0c8dbe5c3753..0267c04504ec 100644 --- a/sys/sys/syscall.mk +++ b/sys/sys/syscall.mk @@ -1,7 +1,7 @@ # FreeBSD system call names. # DO NOT EDIT-- this file is automatically generated. # $FreeBSD$ -# created from FreeBSD: src/sys/kern/syscalls.master,v 1.171 2004/04/05 10:15:53 dfr Exp +# created from FreeBSD: src/sys/kern/syscalls.master,v 1.172 2004/06/22 04:29:27 rwatson Exp MIASM = \ syscall.o \ exit.o \ diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h index 299a5cb8ad52..90b838c31d4f 100644 --- a/sys/sys/sysproto.h +++ b/sys/sys/sysproto.h @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/kern/syscalls.master,v 1.171 2004/04/05 10:15:53 dfr Exp + * created from FreeBSD: src/sys/kern/syscalls.master,v 1.172 2004/06/22 04:29:27 rwatson Exp */ #ifndef _SYS_SYSPROTO_H_