PERFORCE change 156302 for review

Robert Watson rwatson at FreeBSD.org
Sat Jan 17 12:50:24 PST 2009


http://perforce.freebsd.org/chv.cgi?CH=156302

Change 156302 by rwatson at 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 */
 


More information about the p4-projects mailing list