From owner-p4-projects@FreeBSD.ORG Tue Oct 13 22:26:21 2009 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 89E2C106568D; Tue, 13 Oct 2009 22:26:21 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E7E61065672 for ; Tue, 13 Oct 2009 22:26:21 +0000 (UTC) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3BFE48FC14 for ; Tue, 13 Oct 2009 22:26:21 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n9DMQLgY011077 for ; Tue, 13 Oct 2009 22:26:21 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n9DMQLO5011075 for perforce@freebsd.org; Tue, 13 Oct 2009 22:26:21 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Tue, 13 Oct 2009 22:26:21 GMT Message-Id: <200910132226.n9DMQLO5011075@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson To: Perforce Change Reviews Cc: Subject: PERFORCE change 169468 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Oct 2009 22:26:21 -0000 http://perforce.freebsd.org/chv.cgi?CH=169468 Change 169468 by rwatson@rwatson_cinnamon on 2009/10/13 22:26:18 Declare new cap/procdesc system calls NOPROTO in the compat32 syscall table. Affected files ... .. //depot/projects/trustedbsd/capabilities/src/sys/compat/freebsd32/syscalls.master#15 edit Differences ... ==== //depot/projects/trustedbsd/capabilities/src/sys/compat/freebsd32/syscalls.master#15 (text+ko) ==== @@ -901,13 +901,13 @@ 512 AUE_SHMCTL STD { int freebsd32_shmctl(int shmid, int cmd, \ struct shmid_ds32 *buf); } 513 AUE_LPATHCONF NOPROTO { int lpathconf(char *path, int name); } -514 AUE_CAP_NEW STD { int cap_new(int fd, u_int64_t rights); } -515 AUE_CAP_GETRIGHTS STD { int cap_getrights(int fd, \ +514 AUE_CAP_NEW NOPROTO { int cap_new(int fd, u_int64_t rights); } +515 AUE_CAP_GETRIGHTS NOPROTO { int cap_getrights(int fd, \ u_int64_t *rightsp); } -516 AUE_CAP_ENTER STD { int cap_enter(void); } -517 AUE_CAP_GETMODE STD { int cap_getmode(u_int *modep); } -518 AUE_NULL STD { int pdfork(int *fdp); } -519 AUE_NULL STD { int pdkill(int fd, int signum); } -520 AUE_NULL STD { int pdgetpid(int fd, pid_t *pidp); } -521 AUE_NULL STD { int pdwait(int fd, int *status, \ +516 AUE_CAP_ENTER NOPROTO { int cap_enter(void); } +517 AUE_CAP_GETMODE NOPROTO { int cap_getmode(u_int *modep); } +518 AUE_NULL NOPROTO { int pdfork(int *fdp); } +519 AUE_NULL NOPROTO { int pdkill(int fd, int signum); } +520 AUE_NULL NOPROTO { int pdgetpid(int fd, pid_t *pidp); } +521 AUE_NULL NOPROTO { int pdwait(int fd, int *status, \ int options, struct rusage *rusage); }