PERFORCE change 81663 for review
Robert Watson
rwatson at FreeBSD.org
Mon Aug 8 18:39:31 GMT 2005
http://perforce.freebsd.org/chv.cgi?CH=81663
Change 81663 by rwatson at rwatson_peppercorn on 2005/08/08 18:39:17
Correct loop-back problems from integrate.
Affected files ...
.. //depot/projects/trustedbsd/mac/sys/kern/tty_pty.c#23 edit
.. //depot/projects/trustedbsd/mac/sys/sys/conf.h#29 edit
Differences ...
==== //depot/projects/trustedbsd/mac/sys/kern/tty_pty.c#23 (text+ko) ====
@@ -720,7 +720,7 @@
ptc_drvinit(void *unused)
{
- EVENTHANDLER_REGISTER(dev_clone_cred, pty_clone, 0, 1000);
+ EVENTHANDLER_REGISTER(dev_clone, pty_clone, 0, 1000);
}
SYSINIT(ptcdev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE,ptc_drvinit,NULL)
==== //depot/projects/trustedbsd/mac/sys/sys/conf.h#29 (text+ko) ====
@@ -285,10 +285,6 @@
int dev_stdclone(char *_name, char **_namep, const char *_stem, int *_unit);
EVENTHANDLER_DECLARE(dev_clone, dev_clone_fn);
-typedef void (*dev_clone_cred_fn)(void *arg, struct ucred *cred, char *name,
- int namelen, struct cdev **result);
-EVENTHANDLER_DECLARE(dev_clone_cred, dev_clone_cred_fn);
-
/* Stuff relating to kernel-dump */
struct dumperinfo {
To Unsubscribe: send mail to majordomo at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message
More information about the trustedbsd-cvs
mailing list