From owner-p4-projects@FreeBSD.ORG Sat Jan 17 20:50:23 2009 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 32810106567B; Sat, 17 Jan 2009 20:50:23 +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 DE7251065673 for ; Sat, 17 Jan 2009 20:50:22 +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 B84DD8FC13 for ; Sat, 17 Jan 2009 20:50:22 +0000 (UTC) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n0HKoMUC035767 for ; Sat, 17 Jan 2009 20:50:22 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 n0HKoMdL035765 for perforce@freebsd.org; Sat, 17 Jan 2009 20:50:22 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Sat, 17 Jan 2009 20:50:22 GMT Message-Id: <200901172050.n0HKoMdL035765@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 156302 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: Sat, 17 Jan 2009 20:50:24 -0000 http://perforce.freebsd.org/chv.cgi?CH=156302 Change 156302 by rwatson@rwatson_freebsd_capabilities on 2009/01/17 20:49:23 Put public process descriptor system calls in procdesc.h. Add process descriptor system call symbols to libc symbol version list. Affected files ... .. //depot/projects/trustedbsd/capabilities/src/lib/libc/sys/Symbol.map#12 edit .. //depot/projects/trustedbsd/capabilities/src/sys/sys/procdesc.h#2 edit Differences ... ==== //depot/projects/trustedbsd/capabilities/src/lib/libc/sys/Symbol.map#12 (text) ==== @@ -350,6 +350,10 @@ mkfifoat; mknodat; openat; + pdfork; + pdgetpid; + pdkill; + pdwait4; readlinkat; renameat; setfib; ==== //depot/projects/trustedbsd/capabilities/src/sys/sys/procdesc.h#2 (text+ko) ==== @@ -80,6 +80,11 @@ /* * Process descriptor system calls. */ +struct rusage; +int pdfork(int *fdp); +int pdkill(int fd, int signum); +int pdgetpid(int fd, pid_t *pidp); +int pdwait4(int fd, int *status, int options, struct rusage *rusage); #endif /* _KERNEL */