Module Name:    src
Committed By:   christos
Date:           Sat Oct  3 22:55:48 UTC 2009

Modified Files:
        src/sys/rump/librump/rumpkern: emul.c

Log Message:
Need proc_uidmatch


To generate a diff of this commit:
cvs rdiff -u -r1.96 -r1.97 src/sys/rump/librump/rumpkern/emul.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/librump/rumpkern/emul.c
diff -u src/sys/rump/librump/rumpkern/emul.c:1.96 src/sys/rump/librump/rumpkern/emul.c:1.97
--- src/sys/rump/librump/rumpkern/emul.c:1.96	Thu Sep 24 17:00:09 2009
+++ src/sys/rump/librump/rumpkern/emul.c	Sat Oct  3 18:55:48 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: emul.c,v 1.96 2009/09/24 21:00:09 pooka Exp $	*/
+/*	$NetBSD: emul.c,v 1.97 2009/10/03 22:55:48 christos Exp $	*/
 
 /*
  * Copyright (c) 2007 Antti Kantee.  All Rights Reserved.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: emul.c,v 1.96 2009/09/24 21:00:09 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: emul.c,v 1.97 2009/10/03 22:55:48 christos Exp $");
 
 #include <sys/param.h>
 #include <sys/malloc.h>
@@ -619,6 +619,13 @@
 	panic("%s: not implemented", __func__);
 }
 
+int
+proc_uidmatch(kauth_cred_t cred, kauth_cred_t target)
+{
+
+	panic("%s: not implemented", __func__);
+}
+
 void
 proc_crmod_enter(void)
 {

Reply via email to