_kern_create_dir
extern status_t _kern_create_dir(int fd, const char *path, int perms);
extern status_t _kern_create_dir(int fd, const char *path, int perms);
status_t error = _kern_create_dir(fDirFd, path,
error = _kern_create_dir(-1, dirPath.Path(), mode);
RETURN_AND_SET_ERRNO(_kern_create_dir(fd, path, mode));
status_t error = _kern_create_dir(fDirFd, path,
error = _kern_create_dir(-1, dirPath.Path(), mode & ~__gUmask);
_kern_create_dir(-1, "/dev", 0755);
_kern_create_dir(-1, "/boot", 0755);
RETURN_AND_SET_ERRNO(_kern_create_dir(fd, path, mode & ~__gUmask));
fssh_status_t error = _kern_create_dir(-1, path,
error = _kern_create_dir(-1, kMountPoint, 0775);
error = _kern_create_dir(-1,
error = _kern_create_dir(-1, kMountPoint, 0775);
return _ERR(_kern_create_dir(-1, path, mode));
fssh_status_t _kern_create_dir(int fd, const char *path, int perms);