POSIX

Usage

use OS.POSIX;

or

import OS.POSIX;

The OS.POSIX module provides definitions matching the POSIX programming interface, specifically POSIX.1-2017. That standard can be found at <https://pubs.opengroup.org/onlinepubs/9699919799/>.

There is one unavoidable difference between POSIX and OS.POSIX. POSIX defines a function named select(), which OS.POSIX could not use because select is itself a Chapel keyword.

type blkcnt_t

Explicit conversions between blkcnt_t and c_int are also defined, to support usability.

type blksize_t

Explicit conversions between blksize_t and c_int are also defined, to support usability.

type dev_t

Explicit conversions between dev_t and c_int are also defined, to support usability.

type gid_t

Explicit conversions between gid_t and c_int are also defined, to support usability.

type ino_t

Explicit conversions between ino_t and c_uint are also defined, to support usability.

type mode_t

Bitwise-AND and bitwise-OR operators are defined on mode_t operands, to support querying and constructing mode values. Explicit conversions between mode_t and c_int are also defined, to support usability.

Explicit conversions between nlink_t and c_int are also defined, to support usability.

type off_t

Explicit conversions between off_t and c_int and off_t and integral types are also defined, to support usability.

type suseconds_t

Explicit conversions between suseconds_t and c_int are also defined, to support usability.

type time_t

Explicit conversions between time_t and c_int are also defined, to support usability.

type uid_t

Explicit conversions between uid_t and c_int are also defined, to support usability.

record struct_timespec
var tv_sec: time_t
var tv_nsec: c_long
const E2BIG: c_int

Argument list too long. The number of bytes used for the argument and environment list of the new process exceeded the current limit.

const EACCES: c_int

Permission denied. An attempt was made to access a file in a way forbidden by its file access permissions. (POSIX.1)

const EADDRINUSE: c_int

Address already in use. Only one usage of each address is normally permitted.

const EADDRNOTAVAIL: c_int

Can’t assign requested address. Normally results from an attempt to create a socket with an address not on this machine.

const EAFNOSUPPORT: c_int

Address family not supported by protocol family. An address incompatible with the requested protocol was used. For example, you should not necessarily expect to be able to use NS addresses with ARPA Internet protocols.

const EAGAIN: c_int

Resource temporarily unavailable. This is a temporary condition and later calls to the same routine may complete normally.

const EALREADY: c_int

Operation already in progress. An operation was attempted on a non-blocking object that already had an operation in progress.

const EBADF: c_int

Bad file descriptor. A file descriptor argument was out of range, referred to no open file, or a read (write) request was made to a file that was only open for writing (reading).

const EBADMSG: c_int

Bad message. A corrupted message was detected. (POSIX.1)

const EBUSY: c_int

Device or resource busy. An attempt to use a system resource which was in use at the time in a manner which would have conflicted with the request.

const ECANCELED: c_int

Operation canceled. The scheduled operation was canceled. (POSIX.1)

const ECHILD: c_int

No child processes. A wait or waitpid system call was executed by a process that had no existing or unwaited-for child processes. (POSIX.1)

const ECONNABORTED: c_int

Software caused connection abort. A connection abort was caused internal to your host machine.

const ECONNREFUSED: c_int

Connection refused. No connection could be made because the target machine actively refused it. This usually results from trying to connect to a service that is inactive on the foreign host.

const ECONNRESET: c_int

Connection reset by peer. A connection was forcibly closed by a peer. This normally results from a loss of the connection on the remote socket due to a timeout or a reboot.

const EDEADLK: c_int

Resource deadlock avoided. An attempt was made to lock a system resource that would have resulted in a deadlock situation. (POSIX.1)

const EDESTADDRREQ: c_int

Destination address required. A required address was omitted from an operation on a socket.

const EDOM: c_int

Numerical argument out of domain. A numerical input argument was outside the defined domain of the mathematical function.

const EDQUOT: c_int

Disc quota exceeded. A write system call to an ordinary file, the creation of a directory or symbolic link, or the creation of a directory entry failed because the user’s quota of disk blocks was exhausted, or the allocation of an inode for a newly created file failed because the user’s quota of inodes was exhausted.

const EEXIST: c_int

File exists. An existing file was mentioned in an inappropriate context, for instance, as the new link name in a link system call.

const EFAULT: c_int

Bad address. The system detected an invalid address in attempting to use an argument of a call.

const EFBIG: c_int

File too large. The size of a file exceeded the maximum.

const EHOSTUNREACH: c_int

No route to host. A socket operation was attempted to an unreachable host.

const EIDRM: c_int

Identifier removed. An IPC identifier was removed while the current process was waiting on it.

const EILSEQ: c_int

Illegal byte sequence. While decoding a multibyte character the function came along an invalid or an incomplete sequence of bytes or the given wide character is invalid.

This error might be returned for example in the case of an illegal UTF-8 byte sequence.

const EINPROGRESS: c_int

Operation now in progress. An operation that takes a long time to complete (such as a connect system call) was attempted on a non-blocking object.

const EINTR: c_int

Interrupted system call. An asynchronous signal (such as SIGINT or SIGQUIT) was caught by the process during the execution of an interruptible function. If the signal handler performs a normal return, the interrupted system call will seem to have returned the error condition.

const EINVAL: c_int

Invalid argument. Some invalid argument was supplied. (For example, specifying an undefined signal to a signal system call or a kill system call).

const EIO: c_int

Input/output error. Some physical input or output error occurred. This error will not be reported until a subsequent operation on the same file descriptor and may be lost (over written) by any subsequent errors.

const EISCONN: c_int

Socket is already connected. A connect system call was made on an already connected socket; or, a sendto or sendmsg system call on a connected socket specified a destination when already connected.

const EISDIR: c_int

Is a directory. An attempt was made to open a directory with write mode specified.

const ELOOP: c_int

Too many levels of symbolic links. A path name lookup involved more than 32 (MAXSYMLINKS) symbolic links.

const EMFILE: c_int

Too many open files. Maximum number of file descriptors allowable in the process has been reached and requests for an open cannot be satisfied until at least one has been closed. The getdtablesize system call will obtain the current limit.

Too many links. Maximum allowable hard links to a single file has been exceeded.

const EMSGSIZE: c_int

Message too long. A message sent on a socket was larger than the internal message buffer or some other network limit.

const EMULTIHOP: c_int

Multihop attempted.

const ENAMETOOLONG: c_int

File name too long. A component of a path name exceeded {NAME_MAX} characters, or an entire path name exceeded {PATH_MAX} characters.

const ENETDOWN: c_int

Network is down. A socket operation encountered a dead network.

const ENETRESET: c_int

Network dropped connection on reset. The host you were connected to crashed and rebooted.

const ENETUNREACH: c_int

Network is unreachable. A socket operation was attempted to an unreachable network.

const ENFILE: c_int

Too many open files in system. Maximum number of open files allowable on the system has been reached and requests for an open cannot be satisfied until at least one has been closed.

const ENOBUFS: c_int

No buffer space available. An operation on a socket or pipe was not performed because the system lacked sufficient buffer space or because a queue was full.

const ENODEV: c_int

Operation not supported by device. An attempt was made to apply an inappropriate function to a device, for example, trying to read a write-only device such as a printer.

const ENOENT: c_int

No such file or directory. A component of a specified pathname did not exist, or the pathname was an empty string.

const ENOEXEC: c_int

Exec format error. A request was made to execute a file that, although it has the appropriate permissions, was not in the format required for an executable file.

const ENOLCK: c_int

No locks available. A system-imposed limit on the number of simultaneous file locks was reached.

Link has been severed.

const ENOMEM: c_int

Cannot allocate memory. The new process image required more memory than was allowed by the hardware or by system-imposed memory management constraints. A lack of swap space is normally temporary; however, a lack of core is not. Soft limits may be increased to their corresponding hard limits.

const ENOMSG: c_int

No message of desired type. An IPC message queue does not contain a message of the desired type, or a message catalog does not contain the requested message.

const ENOPROTOOPT: c_int

Protocol not available. A bad option or level was specified in a getsockopt or setsockopt system call.

const ENOSPC: c_int

No space left on device. A write system call to an ordinary file, the creation of a directory or symbolic link, or the creation of a directory entry failed because no more disk blocks were available on the file system, or the allocation of an inode for a newly created file failed because no more inodes were available on the file system.

const ENOSYS: c_int

Function not implemented. Attempted a system call that is not available on this system.

const ENOTCONN: c_int

Socket is not connected. An request to send or receive data was disallowed because the socket was not connected and (when sending on a datagram socket) no address was supplied.

const ENOTDIR: c_int

Not a directory. A component of the specified pathname existed, but it was not a directory, when a directory was expected.

const ENOTEMPTY: c_int

Directory not empty. A directory with entries other than ‘.’ and ‘..’ was supplied to a remove directory or rename call.

const ENOTRECOVERABLE: c_int
const ENOTSOCK: c_int

Socket operation on non-socket.

const ENOTSUP: c_int

Operation not supported. The attempted operation is not supported for the type of object referenced. Usually this occurs when a file descriptor refers to a file or socket that cannot support this operation, for example, trying to accept a connection on a datagram socket.

const ENOTTY: c_int

Inappropriate ioctl for device. A control function (e.g. ioctl system call) was attempted for a file or special device for which the operation was inappropriate.

const ENXIO: c_int

Device not configured. Input or output on a special file referred to a device that did not exist, or made a request beyond the limits of the device. This error may also occur when, for example, a tape drive is not online or no disk pack is loaded on a drive.

const EOPNOTSUPP: c_int

Operation not supported. The attempted operation is not supported for the type of object referenced. Usually this occurs when a file descriptor refers to a file or socket that cannot support this operation, for example, trying to accept a connection on a datagram socket.

const EOVERFLOW: c_int

Value too large to be stored in data type. A numerical result of the function was too large to be stored in the caller provided space.

const EOWNERDEAD: c_int
const EPERM: c_int

Operation not permitted. An attempt was made to perform an operation limited to processes with appropriate privileges or to the owner of a file or other resources.

const EPIPE: c_int

Broken pipe. A write on a pipe, socket or FIFO for which there is no process to read the data.

const EPROTO: c_int

Protocol error. A device or socket encountered an unrecoverable protocol error.

const EPROTONOSUPPORT: c_int

Protocol not supported. The protocol has not been configured into the system or no implementation for it exists.

const EPROTOTYPE: c_int

Protocol wrong type for socket. A protocol was specified that does not support the semantics of the socket type requested. For example, you cannot use the ARPA Internet UDP protocol with type SOCK_STREAM.

const ERANGE: c_int

Result too large. A numerical result of the function was too large to fit in the available space (perhaps exceeded precision).

const EROFS: c_int

Read-only file system. An attempt was made to modify a file or directory on a file system that was read-only at the time.

const ESPIPE: c_int

Illegal seek. An lseek system call was issued on a socket, pipe or FIFO.

const ESRCH: c_int

No such process. No process could be found corresponding to that specified by the given process ID.

const ESTALE: c_int

Stale NFS file handle. An attempt was made to access an open file (on an NFS file system) which is now unavailable as referenced by the file descriptor. This may indicate the file was deleted on the NFS server or some other catastrophic event occurred.

const ETIMEDOUT: c_int

Operation timed out. A connect or send system call failed because the connected party did not properly respond after a period of time (The timeout period is dependent on the communication protocol).

const ETXTBSY: c_int

Text file busy. The new process was a pure procedure (shared text) file which was open for writing by another process, or while the pure procedure file was being executed an open system call requested write access.

const EWOULDBLOCK: c_int

Operation would block (may be same value as EAGAIN).

const EXDEV: c_int

Cross-device link. A hard link to a file on another file system was attempted.

proc errno: c_int

POSIX says that errno is a “modifiable lvalue of type int”, but for now we only support reading from it, not assigning to it.

const SIGABRT: c_int

Abort Signal (from abort(3))

const SIGALRM: c_int

Timer Signal (from alarm(2))

const SIGBUS: c_int

Bus error (bad memory access)

const SIGCHLD: c_int

Child stopped or terminated

const SIGCONT: c_int

Continue if stopped

const SIGFPE: c_int

Floating-point exception

const SIGHUP: c_int

Hangup detected on controlling terminal or death of controlling process

const SIGILL: c_int

Illegal Instruction

const SIGINT: c_int

Interrupt from keyboard

const SIGKILL: c_int

Kill signal

const SIGPIPE: c_int

Broken pipe: write to pipe with no readers

const SIGQUIT: c_int

Quit from keyboard

const SIGSEGV: c_int

Invalid memory reference

const SIGSTOP: c_int

Stop process

const SIGTERM: c_int

Termination signal

const SIGTRAP: c_int

Trace/breakpoint trap

const SIGTSTP: c_int

Stop typed at terminal

const SIGTTIN: c_int

Terminal input for background process

const SIGTTOU: c_int

Terminal output for background process

const SIGURG: c_int

Urgent condition on socket

const SIGUSR1: c_int

User-defined signal 1

const SIGUSR2: c_int

User-defined signal 2

const SIGXCPU: c_int

CPU time limit exceeded

const SIGXFSZ: c_int

File size limit exceeded

const O_ACCMODE: c_int
const O_APPEND: c_int
const O_CLOEXEC: c_int
const O_CREAT: c_int
const O_DIRECTORY: c_int
const O_DSYNC: c_int
const O_EXCL: c_int
const O_NOCTTY: c_int
const O_NOFOLLOW: c_int
const O_NONBLOCK: c_int
const O_RDONLY: c_int
const O_RDWR: c_int
const O_SYNC: c_int
const O_TRUNC: c_int
const O_WRONLY: c_int
proc creat(path: c_string, mode: mode_t = 0): c_int
proc open(path: c_string, oflag: c_int, mode: mode_t = 0: mode_t): c_int
proc getenv(name: c_string): c_ptr(c_char)
proc strerror(errnum: c_int): c_string
proc strlen(s: c_string): c_size_t
const FD_SETSIZE: c_int
record fd_set
proc FD_CLR(fd: c_int, fdset: c_ptr(fd_set))
proc FD_ISSET(fd: c_int, fdset: c_ptr(fd_set)): c_int
proc FD_SET(fd: c_int, fdset: c_ptr(fd_set))
proc FD_ZERO(fdset: c_ptr(fd_set))
proc select_posix(nfds: c_int, readfds: c_ptr(fd_set), writefds: c_ptr(fd_set), errorfds: c_ptr(fd_set), timeout: c_ptr(struct_timeval)): c_int
proc S_IRWXU: mode_t
proc S_IRUSR: mode_t
proc S_IWUSR: mode_t
proc S_IXUSR: mode_t
proc S_IRWXG: mode_t
proc S_IRGRP: mode_t
proc S_IWGRP: mode_t
proc S_IXGRP: mode_t
proc S_IRWXO: mode_t
proc S_IROTH: mode_t
proc S_IWOTH: mode_t
proc S_IXOTH: mode_t
proc S_ISUID: mode_t
proc S_ISGID: mode_t
proc S_ISVTX: mode_t
record struct_stat
var st_dev: dev_t
var st_ino: ino_t
var st_mode: mode_t
var st_uid: uid_t
var st_gid: gid_t
var st_rdev: dev_t
var st_size: off_t
var st_atim: struct_timespec
var st_mtim: struct_timespec
var st_ctim: struct_timespec
var st_blksize: blksize_t
var st_blocks: blkcnt_t
proc chmod(path: c_string, mode: mode_t): c_int
proc stat(path: c_string, buf: c_ptr(struct_stat)): c_int
record struct_timeval
var tv_sec: time_t
var tv_usec: suseconds_t
proc struct_timeval.init()
proc struct_timeval.init(tv_sec: integral, tv_usec: integral)
proc struct_timeval.init(tv_sec: time_t, tv_usec: suseconds_t)
record struct_timezone
var tz_minuteswest: c_int
var tz_dsttime: c_int
proc gettimeofday(tp: c_ptr(struct_timeval), tzp: c_ptr(struct_timezone)): c_int
record struct_tm
var tm_sec: c_int
var tm_min: c_int
var tm_hour: c_int
var tm_mday: c_int
var tm_mon: c_int
var tm_year: c_int
var tm_wday: c_int
var tm_yday: c_int
var tm_isdst: c_int
proc asctime(timeptr: c_ptr(struct_tm)): c_ptr(c_char)
proc asctime_r(timeptr: c_ptr(struct_tm), buf: c_ptr(c_char)): c_ptr(c_char)
proc localtime(timer: c_ptr(time_t)): c_ptr(struct_tm)
proc localtime_r(timer: c_ptr(time_t), result: c_ptr(struct_tm)): c_ptr(struct_tm)
proc time(tloc: c_ptr(time_t)): time_t
proc close(fildes: c_int): c_int
proc pipe(fildes: c_ptr(c_array(c_int, 2))): c_int
proc read(fildes: c_int, buf: c_void_ptr, size: c_size_t): c_ssize_t
proc write(fildes: c_int, buf: c_void_ptr, size: c_size_t): c_ssize_t