cef3ce969a
- Updated system calls VFS_ACCESS, VFS_CHDIR, VFS_CHMOD, VFS_CHROOT, VFS_MKDIR, VFS_OPEN, VFS_RMDIR, VSF_UNLINK - Removed M3_STRING and M3_LONG_STRING, which are tied to a specific "generic" message, and replaced where needed with M_PATH_STRING_MAX, which is tied to the mess_lc_vfs_path message. Change-Id: If287c74f5ece937b9431e5d95b5b58a3c83ebff1
16 lines
296 B
C
16 lines
296 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <sys/stat.h>
|
|
#include <string.h>
|
|
|
|
int mkdir(const char *name, mode_t mode)
|
|
{
|
|
message m;
|
|
|
|
memset(&m, 0, sizeof(m));
|
|
m.m_lc_vfs_path.mode = mode;
|
|
_loadname(name, &m);
|
|
return(_syscall(VFS_PROC_NR, VFS_MKDIR, &m));
|
|
}
|