From owner-p4-projects Wed May 8 19:13:23 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 6A82537B415; Wed, 8 May 2002 19:13:13 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 26F1C37B408 for ; Wed, 8 May 2002 19:13:12 -0700 (PDT) Received: (from perforce@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g492DBQ36604 for perforce@freebsd.org; Wed, 8 May 2002 19:13:11 -0700 (PDT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Wed, 8 May 2002 19:13:11 -0700 (PDT) Message-Id: <200205090213.g492DBQ36604@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson Subject: PERFORCE change 11030 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG http://people.freebsd.org/~peter/p4db/chv.cgi?CH=11030 Change 11030 by rwatson@rwatson_curry on 2002/05/08 19:12:30 Insert a dummy lchflags() system call entry to avoid collisions as we add more system calls. The actual entry will be integ'd to this tree later as appropriate. Affected files ... ... //depot/projects/trustedbsd/mac/sys/kern/init_sysent.c#15 edit ... //depot/projects/trustedbsd/mac/sys/kern/syscalls.c#15 edit ... //depot/projects/trustedbsd/mac/sys/kern/syscalls.master#13 edit ... //depot/projects/trustedbsd/mac/sys/sys/syscall.h#16 edit ... //depot/projects/trustedbsd/mac/sys/sys/syscall.mk#16 edit ... //depot/projects/trustedbsd/mac/sys/sys/sysproto.h#17 edit Differences ... ==== //depot/projects/trustedbsd/mac/sys/kern/init_sysent.c#15 (text+ko) ==== @@ -413,4 +413,5 @@ { SYF_MPSAFE | AS(__mac_set_fd_args), (sy_call_t *)__mac_set_fd }, /* 388 = __mac_set_fd */ { SYF_MPSAFE | AS(__mac_set_file_args), (sy_call_t *)__mac_set_file }, /* 389 = __mac_set_file */ { AS(kenv_args), (sy_call_t *)kenv }, /* 390 = kenv */ + { 0, (sy_call_t *)nosys }, /* 391 = lchflags */ }; ==== //depot/projects/trustedbsd/mac/sys/kern/syscalls.c#15 (text+ko) ==== @@ -398,4 +398,5 @@ "__mac_set_fd", /* 388 = __mac_set_fd */ "__mac_set_file", /* 389 = __mac_set_file */ "kenv", /* 390 = kenv */ + "#391", /* 391 = lchflags */ }; ==== //depot/projects/trustedbsd/mac/sys/kern/syscalls.master#13 (text+ko) ==== @@ -561,3 +561,4 @@ 389 MSTD BSD { int __mac_set_file(const char *path_p, struct mac *mac_p); } 390 STD BSD { int kenv(int what, const char *name, char *value, \ int len); } +391 UNIMPL BSD lchflags ==== //depot/projects/trustedbsd/mac/sys/sys/syscall.h#16 (text+ko) ==== @@ -310,4 +310,4 @@ #define SYS___mac_set_fd 388 #define SYS___mac_set_file 389 #define SYS_kenv 390 -#define SYS_MAXSYSCALL 391 +#define SYS_MAXSYSCALL 392 ==== //depot/projects/trustedbsd/mac/sys/sys/syscall.mk#16 (text+ko) ==== ==== //depot/projects/trustedbsd/mac/sys/sys/sysproto.h#17 (text+ko) ==== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message