X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/8f6c56a50524aa785f7e596d52dddfb331e18961..a1c7dba18ef36983396c282fe85292db066e39db:/bsd/miscfs/devfs/devfs_proto.h diff --git a/bsd/miscfs/devfs/devfs_proto.h b/bsd/miscfs/devfs/devfs_proto.h index f9e278fe6..0485fb52d 100644 --- a/bsd/miscfs/devfs/devfs_proto.h +++ b/bsd/miscfs/devfs/devfs_proto.h @@ -31,10 +31,11 @@ #include +__BEGIN_DECLS #ifdef __APPLE_API_PRIVATE int devfs_sinit(void); -devdirent_t * dev_findname(devnode_t * dir,char *name); -int dev_add_name(char * name, devnode_t * dirnode, devdirent_t * back, +devdirent_t * dev_findname(devnode_t * dir, const char *name); +int dev_add_name(const char * name, devnode_t * dirnode, devdirent_t * back, devnode_t * dnp, devdirent_t * *dirent_pp); int dev_add_node(int entrytype, devnode_type_t * typeinfo, devnode_t * proto, devnode_t * *dn_pp, struct devfsmount *dvm); @@ -43,12 +44,14 @@ int dev_dup_plane(struct devfsmount *devfs_mp_p); void devfs_free_plane(struct devfsmount *devfs_mp_p); int dev_free_name(devdirent_t * dirent_p); int devfs_dntovn(devnode_t * dnp, struct vnode **vn_pp, struct proc * p); -int dev_add_entry(char *name, devnode_t * parent, int type, devnode_type_t * typeinfo, +int dev_add_entry(const char *name, devnode_t * parent, int type, devnode_type_t * typeinfo, devnode_t * proto, struct devfsmount *dvm, devdirent_t * *nm_pp); int devfs_mount(struct mount *mp, vnode_t devvp, user_addr_t data, vfs_context_t context); - +int devfs_kernel_mount(char * mntname); #endif /* __APPLE_API_PRIVATE */ +__END_DECLS + #endif /* __DEVFS_DEVFS_PROTO_H__ */ /* THIS FILE PRODUCED AUTOMATICALLY */ /* DO NOT EDIT (see reproto.sh) */