__xmknodat

Name

__xmknodat -- make a special file relative to a directory file descriptor

Synopsis

#include <sys/stat.h>

int __xmknodat(int ver, int dirfd, const char * path, mode_t path, dev_t * dev);

Description

The __xmknodat() function shall implement the mknodat() function. The value of ver shall be _MKNOD_VER or the behavior of __xmknodat() is undefined. See Data Definitions in the architecture specific part of this specification for the correct value of _MKNOD_VER.

__xmknodat(_MKNOD_VER, dirfd, path, mode, dev) shall behave as mknod(dirfd, path, mode, dev) as specified by POSIX 1003.1 2008.

The __xmknodat() function is not in the source standard; it is only in the binary standard.

Note: The mknodat() function is not in the binary standard; it is only in the source standard.