mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Correct os errors for darwin
This commit is contained in:
+23
-23
@@ -85,7 +85,7 @@ _dial_tcp_from_endpoint :: proc(endpoint: Endpoint, options := default_tcp_optio
|
|||||||
sockaddr := _endpoint_to_sockaddr(endpoint)
|
sockaddr := _endpoint_to_sockaddr(endpoint)
|
||||||
res := os.connect(os.Socket(skt), (^os.SOCKADDR)(&sockaddr), i32(sockaddr.len))
|
res := os.connect(os.Socket(skt), (^os.SOCKADDR)(&sockaddr), i32(sockaddr.len))
|
||||||
if res != nil {
|
if res != nil {
|
||||||
err = Dial_Error(res)
|
err = Dial_Error(os.is_platform_error(res) or_else -1)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -104,7 +104,7 @@ _bind :: proc(skt: Any_Socket, ep: Endpoint) -> (err: Network_Error) {
|
|||||||
if res == os.EACCES && ep.port <= MAX_PRIVILEGED_PORT {
|
if res == os.EACCES && ep.port <= MAX_PRIVILEGED_PORT {
|
||||||
err = .Privileged_Port_Without_Root
|
err = .Privileged_Port_Without_Root
|
||||||
} else {
|
} else {
|
||||||
err = Bind_Error(res)
|
err = Bind_Error(os.is_platform_error(res) or_else -1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
@@ -129,7 +129,7 @@ _listen_tcp :: proc(interface_endpoint: Endpoint, backlog := 1000) -> (skt: TCP_
|
|||||||
|
|
||||||
res := os.listen(os.Socket(skt), backlog)
|
res := os.listen(os.Socket(skt), backlog)
|
||||||
if res != nil {
|
if res != nil {
|
||||||
err = Listen_Error(res)
|
err = Listen_Error(os.is_platform_error(res) or_else -1)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -162,9 +162,9 @@ _recv_tcp :: proc(skt: TCP_Socket, buf: []byte) -> (bytes_read: int, err: Networ
|
|||||||
if len(buf) <= 0 {
|
if len(buf) <= 0 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
res, ok := os.recv(os.Socket(skt), buf, 0)
|
res, res_err := os.recv(os.Socket(skt), buf, 0)
|
||||||
if ok != os.ERROR_NONE {
|
if res_err != nil {
|
||||||
err = TCP_Recv_Error(ok)
|
err = TCP_Recv_Error(os.is_platform_error(res_err) or_else -1)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return int(res), nil
|
return int(res), nil
|
||||||
@@ -178,9 +178,9 @@ _recv_udp :: proc(skt: UDP_Socket, buf: []byte) -> (bytes_read: int, remote_endp
|
|||||||
|
|
||||||
from: os.SOCKADDR_STORAGE_LH
|
from: os.SOCKADDR_STORAGE_LH
|
||||||
fromsize := c.int(size_of(from))
|
fromsize := c.int(size_of(from))
|
||||||
res, ok := os.recvfrom(os.Socket(skt), buf, 0, cast(^os.SOCKADDR) &from, &fromsize)
|
res, res_err := os.recvfrom(os.Socket(skt), buf, 0, cast(^os.SOCKADDR) &from, &fromsize)
|
||||||
if ok != os.ERROR_NONE {
|
if res_err != nil {
|
||||||
err = UDP_Recv_Error(ok)
|
err = UDP_Recv_Error(os.is_platform_error(res_err) or_else -1)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -194,9 +194,9 @@ _send_tcp :: proc(skt: TCP_Socket, buf: []byte) -> (bytes_written: int, err: Net
|
|||||||
for bytes_written < len(buf) {
|
for bytes_written < len(buf) {
|
||||||
limit := min(int(max(i32)), len(buf) - bytes_written)
|
limit := min(int(max(i32)), len(buf) - bytes_written)
|
||||||
remaining := buf[bytes_written:][:limit]
|
remaining := buf[bytes_written:][:limit]
|
||||||
res, ok := os.send(os.Socket(skt), remaining, 0)
|
res, res_err := os.send(os.Socket(skt), remaining, 0)
|
||||||
if ok != os.ERROR_NONE {
|
if res_err != nil {
|
||||||
err = TCP_Send_Error(ok)
|
err = TCP_Send_Error(os.is_platform_error(res_err) or_else -1)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
bytes_written += int(res)
|
bytes_written += int(res)
|
||||||
@@ -210,9 +210,9 @@ _send_udp :: proc(skt: UDP_Socket, buf: []byte, to: Endpoint) -> (bytes_written:
|
|||||||
for bytes_written < len(buf) {
|
for bytes_written < len(buf) {
|
||||||
limit := min(1<<31, len(buf) - bytes_written)
|
limit := min(1<<31, len(buf) - bytes_written)
|
||||||
remaining := buf[bytes_written:][:limit]
|
remaining := buf[bytes_written:][:limit]
|
||||||
res, ok := os.sendto(os.Socket(skt), remaining, 0, cast(^os.SOCKADDR)&toaddr, i32(toaddr.len))
|
res, res_err := os.sendto(os.Socket(skt), remaining, 0, cast(^os.SOCKADDR)&toaddr, i32(toaddr.len))
|
||||||
if ok != os.ERROR_NONE {
|
if res_err != nil {
|
||||||
err = UDP_Send_Error(ok)
|
err = UDP_Send_Error(os.is_platform_error(res_err) or_else -1)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
bytes_written += int(res)
|
bytes_written += int(res)
|
||||||
@@ -224,8 +224,8 @@ _send_udp :: proc(skt: UDP_Socket, buf: []byte, to: Endpoint) -> (bytes_written:
|
|||||||
_shutdown :: proc(skt: Any_Socket, manner: Shutdown_Manner) -> (err: Network_Error) {
|
_shutdown :: proc(skt: Any_Socket, manner: Shutdown_Manner) -> (err: Network_Error) {
|
||||||
s := any_socket_to_socket(skt)
|
s := any_socket_to_socket(skt)
|
||||||
res := os.shutdown(os.Socket(s), int(manner))
|
res := os.shutdown(os.Socket(s), int(manner))
|
||||||
if res != os.ERROR_NONE {
|
if res != nil {
|
||||||
return Shutdown_Error(res)
|
return Shutdown_Error(os.is_platform_error(res) or_else -1)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -302,8 +302,8 @@ _set_option :: proc(s: Any_Socket, option: Socket_Option, value: any, loc := #ca
|
|||||||
|
|
||||||
skt := any_socket_to_socket(s)
|
skt := any_socket_to_socket(s)
|
||||||
res := os.setsockopt(os.Socket(skt), int(level), int(option), ptr, len)
|
res := os.setsockopt(os.Socket(skt), int(level), int(option), ptr, len)
|
||||||
if res != os.ERROR_NONE {
|
if res != nil {
|
||||||
return Socket_Option_Error(res)
|
return Socket_Option_Error(os.is_platform_error(res) or_else -1)
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
@@ -314,8 +314,8 @@ _set_blocking :: proc(socket: Any_Socket, should_block: bool) -> (err: Network_E
|
|||||||
socket := any_socket_to_socket(socket)
|
socket := any_socket_to_socket(socket)
|
||||||
|
|
||||||
flags, getfl_err := os.fcntl(int(socket), os.F_GETFL, 0)
|
flags, getfl_err := os.fcntl(int(socket), os.F_GETFL, 0)
|
||||||
if getfl_err != os.ERROR_NONE {
|
if getfl_err != nil {
|
||||||
return Set_Blocking_Error(getfl_err)
|
return Set_Blocking_Error(os.is_platform_error(getfl_err) or_else -1)
|
||||||
}
|
}
|
||||||
|
|
||||||
if should_block {
|
if should_block {
|
||||||
@@ -325,8 +325,8 @@ _set_blocking :: proc(socket: Any_Socket, should_block: bool) -> (err: Network_E
|
|||||||
}
|
}
|
||||||
|
|
||||||
_, setfl_err := os.fcntl(int(socket), os.F_SETFL, flags)
|
_, setfl_err := os.fcntl(int(socket), os.F_SETFL, flags)
|
||||||
if setfl_err != os.ERROR_NONE {
|
if setfl_err != nil {
|
||||||
return Set_Blocking_Error(setfl_err)
|
return Set_Blocking_Error(os.is_platform_error(setfl_err) or_else -1)
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|||||||
+243
-216
@@ -15,252 +15,279 @@ INVALID_HANDLE :: ~Handle(0)
|
|||||||
|
|
||||||
_Platform_Error :: enum i32 {
|
_Platform_Error :: enum i32 {
|
||||||
NONE = 0,
|
NONE = 0,
|
||||||
EPERM = 1, /* Operation not permitted */
|
EPERM = 1, /* Operation not permitted */
|
||||||
ENOENT = 2, /* No such file or directory */
|
ENOENT = 2, /* No such file or directory */
|
||||||
ESRCH = 3, /* No such process */
|
ESRCH = 3, /* No such process */
|
||||||
EINTR = 4, /* Interrupted system call */
|
EINTR = 4, /* Interrupted system call */
|
||||||
EIO = 5, /* Input/output error */
|
EIO = 5, /* Input/output error */
|
||||||
ENXIO = 6, /* Device not configured */
|
ENXIO = 6, /* Device not configured */
|
||||||
E2BIG = 7, /* Argument list too long */
|
E2BIG = 7, /* Argument list too long */
|
||||||
ENOEXEC = 8, /* Exec format error */
|
ENOEXEC = 8, /* Exec format error */
|
||||||
EBADF = 9, /* Bad file descriptor */
|
EBADF = 9, /* Bad file descriptor */
|
||||||
ECHILD = 10, /* No child processes */
|
ECHILD = 10, /* No child processes */
|
||||||
EDEADLK = 11, /* Resource deadlock avoided */
|
EDEADLK = 11, /* Resource deadlock avoided */
|
||||||
ENOMEM = 12, /* Cannot allocate memory */
|
ENOMEM = 12, /* Cannot allocate memory */
|
||||||
EACCES = 13, /* Permission denied */
|
EACCES = 13, /* Permission denied */
|
||||||
EFAULT = 14, /* Bad address */
|
EFAULT = 14, /* Bad address */
|
||||||
ENOTBLK = 15, /* Block device required */
|
ENOTBLK = 15, /* Block device required */
|
||||||
EBUSY = 16, /* Device / Resource busy */
|
EBUSY = 16, /* Device / Resource busy */
|
||||||
EEXIST = 17, /* File exists */
|
EEXIST = 17, /* File exists */
|
||||||
EXDEV = 18, /* Cross-device link */
|
EXDEV = 18, /* Cross-device link */
|
||||||
ENODEV = 19, /* Operation not supported by device */
|
ENODEV = 19, /* Operation not supported by device */
|
||||||
ENOTDIR = 20, /* Not a directory */
|
ENOTDIR = 20, /* Not a directory */
|
||||||
EISDIR = 21, /* Is a directory */
|
EISDIR = 21, /* Is a directory */
|
||||||
EINVAL = 22, /* Invalid argument */
|
EINVAL = 22, /* Invalid argument */
|
||||||
ENFILE = 23, /* Too many open files in system */
|
ENFILE = 23, /* Too many open files in system */
|
||||||
EMFILE = 24, /* Too many open files */
|
EMFILE = 24, /* Too many open files */
|
||||||
ENOTTY = 25, /* Inappropriate ioctl for device */
|
ENOTTY = 25, /* Inappropriate ioctl for device */
|
||||||
ETXTBSY = 26, /* Text file busy */
|
ETXTBSY = 26, /* Text file busy */
|
||||||
EFBIG = 27, /* File too large */
|
EFBIG = 27, /* File too large */
|
||||||
ENOSPC = 28, /* No space left on device */
|
ENOSPC = 28, /* No space left on device */
|
||||||
ESPIPE = 29, /* Illegal seek */
|
ESPIPE = 29, /* Illegal seek */
|
||||||
EROFS = 30, /* Read-only file system */
|
EROFS = 30, /* Read-only file system */
|
||||||
EMLINK = 31, /* Too many links */
|
EMLINK = 31, /* Too many links */
|
||||||
EPIPE = 32, /* Broken pipe */
|
EPIPE = 32, /* Broken pipe */
|
||||||
|
|
||||||
/* math software */
|
/* math software */
|
||||||
EDOM = 33, /* Numerical argument out of domain */
|
EDOM = 33, /* Numerical argument out of domain */
|
||||||
ERANGE = 34, /* Result too large */
|
ERANGE = 34, /* Result too large */
|
||||||
|
|
||||||
/* non-blocking and interrupt i/o */
|
/* non-blocking and interrupt i/o */
|
||||||
EAGAIN = 35, /* Resource temporarily unavailable */
|
EAGAIN = 35, /* Resource temporarily unavailable */
|
||||||
EWOULDBLOCK = EAGAIN, /* Operation would block */
|
EWOULDBLOCK = EAGAIN, /* Operation would block */
|
||||||
EINPROGRESS = 36, /* Operation now in progress */
|
EINPROGRESS = 36, /* Operation now in progress */
|
||||||
EALREADY = 37, /* Operation already in progress */
|
EALREADY = 37, /* Operation already in progress */
|
||||||
|
|
||||||
/* ipc/network software -- argument errors */
|
/* ipc/network software -- argument errors */
|
||||||
ENOTSOCK = 38, /* Socket operation on non-socket */
|
ENOTSOCK = 38, /* Socket operation on non-socket */
|
||||||
EDESTADDRREQ = 39, /* Destination address required */
|
EDESTADDRREQ = 39, /* Destination address required */
|
||||||
EMSGSIZE = 40, /* Message too long */
|
EMSGSIZE = 40, /* Message too long */
|
||||||
EPROTOTYPE = 41, /* Protocol wrong type for socket */
|
EPROTOTYPE = 41, /* Protocol wrong type for socket */
|
||||||
ENOPROTOOPT = 42, /* Protocol not available */
|
ENOPROTOOPT = 42, /* Protocol not available */
|
||||||
EPROTONOSUPPOR = 43, /* Protocol not supported */
|
EPROTONOSUPPORT = 43, /* Protocol not supported */
|
||||||
ESOCKTNOSUPPOR = 44, /* Socket type not supported */
|
ESOCKTNOSUPPORT = 44, /* Socket type not supported */
|
||||||
ENOTSUP = 45, /* Operation not supported */
|
ENOTSUP = 45, /* Operation not supported */
|
||||||
EOPNOTSUPP = ENOTSUP,
|
EOPNOTSUPP = ENOTSUP,
|
||||||
EPFNOSUPPORT = 46, /* Protocol family not supported */
|
EPFNOSUPPORT = 46, /* Protocol family not supported */
|
||||||
EAFNOSUPPORT = 47, /* Address family not supported by protocol family */
|
EAFNOSUPPORT = 47, /* Address family not supported by protocol family */
|
||||||
EADDRINUSE = 48, /* Address already in use */
|
EADDRINUSE = 48, /* Address already in use */
|
||||||
EADDRNOTAVAIL = 49, /* Can't assign requested address */
|
EADDRNOTAVAIL = 49, /* Can't assign requested address */
|
||||||
|
|
||||||
/* ipc/network software -- operational errors */
|
/* ipc/network software -- operational errors */
|
||||||
ENETDOWN = 50, /* Network is down */
|
ENETDOWN = 50, /* Network is down */
|
||||||
ENETUNREAC = 51, /* Network is unreachable */
|
ENETUNREACH = 51, /* Network is unreachable */
|
||||||
ENETRESET = 52, /* Network dropped connection on reset */
|
ENETRESET = 52, /* Network dropped connection on reset */
|
||||||
ECONNABORTE = 53, /* Software caused connection abort */
|
ECONNABORTED = 53, /* Software caused connection abort */
|
||||||
ECONNRESET = 54, /* Connection reset by peer */
|
ECONNRESET = 54, /* Connection reset by peer */
|
||||||
ENOBUFS = 55, /* No buffer space available */
|
ENOBUFS = 55, /* No buffer space available */
|
||||||
EISCONN = 56, /* Socket is already connected */
|
EISCONN = 56, /* Socket is already connected */
|
||||||
ENOTCONN = 57, /* Socket is not connected */
|
ENOTCONN = 57, /* Socket is not connected */
|
||||||
ESHUTDOWN = 58, /* Can't send after socket shutdown */
|
ESHUTDOWN = 58, /* Can't send after socket shutdown */
|
||||||
ETOOMANYREF = 59, /* Too many references: can't splice */
|
ETOOMANYREFS = 59, /* Too many references: can't splice */
|
||||||
ETIMEDOUT = 60, /* Operation timed out */
|
ETIMEDOUT = 60, /* Operation timed out */
|
||||||
ECONNREFUSE = 61, /* Connection refused */
|
ECONNREFUSED = 61, /* Connection refused */
|
||||||
|
|
||||||
ELOOP = 62, /* Too many levels of symbolic links */
|
ELOOP = 62, /* Too many levels of symbolic links */
|
||||||
ENAMETOOLON = 63, /* File name too long */
|
ENAMETOOLONG = 63, /* File name too long */
|
||||||
|
|
||||||
/* should be rearranged */
|
/* should be rearranged */
|
||||||
EHOSTDOWN = 64, /* Host is down */
|
EHOSTDOWN = 64, /* Host is down */
|
||||||
EHOSTUNREAC = 65, /* No route to host */
|
EHOSTUNREACH = 65, /* No route to host */
|
||||||
ENOTEMPTY = 66, /* Directory not empty */
|
ENOTEMPTY = 66, /* Directory not empty */
|
||||||
|
|
||||||
/* quotas & mush */
|
/* quotas & mush */
|
||||||
EPROCLIM = 67, /* Too many processes */
|
EPROCLIM = 67, /* Too many processes */
|
||||||
EUSERS = 68, /* Too many users */
|
EUSERS = 68, /* Too many users */
|
||||||
EDQUOT = 69, /* Disc quota exceeded */
|
EDQUOT = 69, /* Disc quota exceeded */
|
||||||
|
|
||||||
/* Network File System */
|
/* Network File System */
|
||||||
ESTALE = 70, /* Stale NFS file handle */
|
ESTALE = 70, /* Stale NFS file handle */
|
||||||
EREMOTE = 71, /* Too many levels of remote in path */
|
EREMOTE = 71, /* Too many levels of remote in path */
|
||||||
EBADRPC = 72, /* RPC struct is bad */
|
EBADRPC = 72, /* RPC struct is bad */
|
||||||
ERPCMISMATC = 73, /* RPC version wrong */
|
ERPCMISMATCH = 73, /* RPC version wrong */
|
||||||
EPROGUNAVAI = 74, /* RPC prog. not avail */
|
EPROGUNAVAIL = 74, /* RPC prog. not avail */
|
||||||
EPROGMISMATC = 75, /* Program version wrong */
|
EPROGMISMATCH = 75, /* Program version wrong */
|
||||||
EPROCUNAVAI = 76, /* Bad procedure for program */
|
EPROCUNAVAIL = 76, /* Bad procedure for program */
|
||||||
|
|
||||||
ENOLC = 77, /* No locks available */
|
ENOLCK = 77, /* No locks available */
|
||||||
ENOSY = 78, /* Function not implemented */
|
ENOSYS = 78, /* Function not implemented */
|
||||||
|
|
||||||
EFTYP = 79, /* Inappropriate file type or format */
|
EFTYPE = 79, /* Inappropriate file type or format */
|
||||||
EAUT = 80, /* Authentication error */
|
EAUTH = 80, /* Authentication error */
|
||||||
ENEEDAUT = 81, /* Need authenticator */
|
ENEEDAUTH = 81, /* Need authenticator */
|
||||||
|
|
||||||
/* Intelligent device errors */
|
/* Intelligent device errors */
|
||||||
EPWROF = 82, /* Device power is off */
|
EPWROFF = 82, /* Device power is off */
|
||||||
EDEVER = 83, /* Device error, e.g. paper out */
|
EDEVERR = 83, /* Device error, e.g. paper out */
|
||||||
EOVERFLO = 84, /* Value too large to be stored in data type */
|
EOVERFLOW = 84, /* Value too large to be stored in data type */
|
||||||
|
|
||||||
/* Program loading errors */
|
/* Program loading errors */
|
||||||
EBADEXE = 85, /* Bad executable */
|
EBADEXEC = 85, /* Bad executable */
|
||||||
EBADARC = 86, /* Bad CPU type in executable */
|
EBADARCH = 86, /* Bad CPU type in executable */
|
||||||
ESHLIBVER = 87, /* Shared library version mismatch */
|
ESHLIBVERS = 87, /* Shared library version mismatch */
|
||||||
EBADMACH = 88, /* Malformed Macho file */
|
EBADMACHO = 88, /* Malformed Macho file */
|
||||||
|
|
||||||
ECANCELE = 89, /* Operation canceled */
|
ECANCELED = 89, /* Operation canceled */
|
||||||
|
|
||||||
EIDRM = 90, /* Identifier removed */
|
EIDRM = 90, /* Identifier removed */
|
||||||
ENOMSG = 91, /* No message of desired type */
|
ENOMSG = 91, /* No message of desired type */
|
||||||
EILSEQ = 92, /* Illegal byte sequence */
|
EILSEQ = 92, /* Illegal byte sequence */
|
||||||
ENOATT = 93, /* Attribute not found */
|
ENOATTR = 93, /* Attribute not found */
|
||||||
|
|
||||||
EBADMS = 94, /* Bad message */
|
EBADMSG = 94, /* Bad message */
|
||||||
EMULTIHO = 95, /* Reserved */
|
EMULTIHOP = 95, /* Reserved */
|
||||||
ENODAT = 96, /* No message available on STREAM */
|
ENODATA = 96, /* No message available on STREAM */
|
||||||
ENOLIN = 97, /* Reserved */
|
ENOLINK = 97, /* Reserved */
|
||||||
ENOSR = 98, /* No STREAM resources */
|
ENOSR = 98, /* No STREAM resources */
|
||||||
ENOSTR = 99, /* Not a STREAM */
|
ENOSTR = 99, /* Not a STREAM */
|
||||||
EPROTO = 100, /* Protocol error */
|
EPROTO = 100, /* Protocol error */
|
||||||
ETIME = 101, /* STREAM ioctl timeout */
|
ETIME = 101, /* STREAM ioctl timeout */
|
||||||
|
|
||||||
ENOPOLIC = 103, /* No such policy registered */
|
ENOPOLICY = 103, /* No such policy registered */
|
||||||
|
|
||||||
ENOTRECOVERABL = 104, /* State not recoverable */
|
ENOTRECOVERABLE = 104, /* State not recoverable */
|
||||||
EOWNERDEAD = 105, /* Previous owner died */
|
EOWNERDEAD = 105, /* Previous owner died */
|
||||||
|
|
||||||
EQFUL = 106, /* Interface output queue is full */
|
EQFULL = 106, /* Interface output queue is full */
|
||||||
ELAS = 106, /* Must be equal largest Error */
|
ELAST = 106, /* Must be equal largest errno */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
EPERM :: _Platform_Error.EPERM
|
||||||
|
ENOENT :: _Platform_Error.ENOENT
|
||||||
|
ESRCH :: _Platform_Error.ESRCH
|
||||||
|
EINTR :: _Platform_Error.EINTR
|
||||||
|
EIO :: _Platform_Error.EIO
|
||||||
|
ENXIO :: _Platform_Error.ENXIO
|
||||||
|
E2BIG :: _Platform_Error.E2BIG
|
||||||
|
ENOEXEC :: _Platform_Error.ENOEXEC
|
||||||
|
EBADF :: _Platform_Error.EBADF
|
||||||
|
ECHILD :: _Platform_Error.ECHILD
|
||||||
|
EDEADLK :: _Platform_Error.EDEADLK
|
||||||
|
ENOMEM :: _Platform_Error.ENOMEM
|
||||||
|
EACCES :: _Platform_Error.EACCES
|
||||||
|
EFAULT :: _Platform_Error.EFAULT
|
||||||
|
ENOTBLK :: _Platform_Error.ENOTBLK
|
||||||
|
EBUSY :: _Platform_Error.EBUSY
|
||||||
|
EEXIST :: _Platform_Error.EEXIST
|
||||||
|
EXDEV :: _Platform_Error.EXDEV
|
||||||
|
ENODEV :: _Platform_Error.ENODEV
|
||||||
|
ENOTDIR :: _Platform_Error.ENOTDIR
|
||||||
|
EISDIR :: _Platform_Error.EISDIR
|
||||||
|
EINVAL :: _Platform_Error.EINVAL
|
||||||
|
ENFILE :: _Platform_Error.ENFILE
|
||||||
|
EMFILE :: _Platform_Error.EMFILE
|
||||||
|
ENOTTY :: _Platform_Error.ENOTTY
|
||||||
|
ETXTBSY :: _Platform_Error.ETXTBSY
|
||||||
|
EFBIG :: _Platform_Error.EFBIG
|
||||||
|
ENOSPC :: _Platform_Error.ENOSPC
|
||||||
|
ESPIPE :: _Platform_Error.ESPIPE
|
||||||
|
EROFS :: _Platform_Error.EROFS
|
||||||
|
EMLINK :: _Platform_Error.EMLINK
|
||||||
|
EPIPE :: _Platform_Error.EPIPE
|
||||||
|
|
||||||
|
/* math software */
|
||||||
|
EDOM :: _Platform_Error.EDOM
|
||||||
|
ERANGE :: _Platform_Error.ERANGE
|
||||||
|
|
||||||
|
/* non-blocking and interrupt i/o */
|
||||||
|
EAGAIN :: _Platform_Error.EAGAIN
|
||||||
|
EWOULDBLOCK :: _Platform_Error.EWOULDBLOCK
|
||||||
|
EINPROGRESS :: _Platform_Error.EINPROGRESS
|
||||||
|
EALREADY :: _Platform_Error.EALREADY
|
||||||
|
|
||||||
|
/* ipc/network software -- argument errors */
|
||||||
|
ENOTSOCK :: _Platform_Error.ENOTSOCK
|
||||||
|
EDESTADDRREQ :: _Platform_Error.EDESTADDRREQ
|
||||||
|
EMSGSIZE :: _Platform_Error.EMSGSIZE
|
||||||
|
EPROTOTYPE :: _Platform_Error.EPROTOTYPE
|
||||||
|
ENOPROTOOPT :: _Platform_Error.ENOPROTOOPT
|
||||||
|
EPROTONOSUPPORT :: _Platform_Error.EPROTONOSUPPORT
|
||||||
|
ESOCKTNOSUPPORT :: _Platform_Error.ESOCKTNOSUPPORT
|
||||||
|
ENOTSUP :: _Platform_Error.ENOTSUP
|
||||||
|
EOPNOTSUPP :: _Platform_Error.EOPNOTSUPP
|
||||||
|
EPFNOSUPPORT :: _Platform_Error.EPFNOSUPPORT
|
||||||
|
EAFNOSUPPORT :: _Platform_Error.EAFNOSUPPORT
|
||||||
|
EADDRINUSE :: _Platform_Error.EADDRINUSE
|
||||||
|
EADDRNOTAVAIL :: _Platform_Error.EADDRNOTAVAIL
|
||||||
|
|
||||||
|
/* ipc/network software -- operational errors */
|
||||||
|
ENETDOWN :: _Platform_Error.ENETDOWN
|
||||||
|
ENETUNREACH :: _Platform_Error.ENETUNREACH
|
||||||
|
ENETRESET :: _Platform_Error.ENETRESET
|
||||||
|
ECONNABORTED :: _Platform_Error.ECONNABORTED
|
||||||
|
ECONNRESET :: _Platform_Error.ECONNRESET
|
||||||
|
ENOBUFS :: _Platform_Error.ENOBUFS
|
||||||
|
EISCONN :: _Platform_Error.EISCONN
|
||||||
|
ENOTCONN :: _Platform_Error.ENOTCONN
|
||||||
|
ESHUTDOWN :: _Platform_Error.ESHUTDOWN
|
||||||
|
ETOOMANYREFS :: _Platform_Error.ETOOMANYREFS
|
||||||
|
ETIMEDOUT :: _Platform_Error.ETIMEDOUT
|
||||||
|
ECONNREFUSED :: _Platform_Error.ECONNREFUSED
|
||||||
|
|
||||||
|
ELOOP :: _Platform_Error.ELOOP
|
||||||
|
ENAMETOOLONG :: _Platform_Error.ENAMETOOLONG
|
||||||
|
|
||||||
|
/* should be rearranged */
|
||||||
|
EHOSTDOWN :: _Platform_Error.EHOSTDOWN
|
||||||
|
EHOSTUNREACH :: _Platform_Error.EHOSTUNREACH
|
||||||
|
ENOTEMPTY :: _Platform_Error.ENOTEMPTY
|
||||||
|
|
||||||
|
/* quotas & mush */
|
||||||
|
EPROCLIM :: _Platform_Error.EPROCLIM
|
||||||
|
EUSERS :: _Platform_Error.EUSERS
|
||||||
|
EDQUOT :: _Platform_Error.EDQUOT
|
||||||
|
|
||||||
|
/* Network File System */
|
||||||
|
ESTALE :: _Platform_Error.ESTALE
|
||||||
|
EREMOTE :: _Platform_Error.EREMOTE
|
||||||
|
EBADRPC :: _Platform_Error.EBADRPC
|
||||||
|
ERPCMISMATCH :: _Platform_Error.ERPCMISMATCH
|
||||||
|
EPROGUNAVAIL :: _Platform_Error.EPROGUNAVAIL
|
||||||
|
EPROGMISMATCH :: _Platform_Error.EPROGMISMATCH
|
||||||
|
EPROCUNAVAIL :: _Platform_Error.EPROCUNAVAIL
|
||||||
|
|
||||||
|
ENOLCK :: _Platform_Error.ENOLCK
|
||||||
|
ENOSYS :: _Platform_Error.ENOSYS
|
||||||
|
|
||||||
|
EFTYPE :: _Platform_Error.EFTYPE
|
||||||
|
EAUTH :: _Platform_Error.EAUTH
|
||||||
|
ENEEDAUTH :: _Platform_Error.ENEEDAUTH
|
||||||
|
|
||||||
|
/* Intelligent device errors */
|
||||||
|
EPWROFF :: _Platform_Error.EPWROFF
|
||||||
|
EDEVERR :: _Platform_Error.EDEVERR
|
||||||
|
EOVERFLOW :: _Platform_Error.EOVERFLOW
|
||||||
|
|
||||||
|
/* Program loading errors */
|
||||||
|
EBADEXEC :: _Platform_Error.EBADEXEC
|
||||||
|
EBADARCH :: _Platform_Error.EBADARCH
|
||||||
|
ESHLIBVERS :: _Platform_Error.ESHLIBVERS
|
||||||
|
EBADMACHO :: _Platform_Error.EBADMACHO
|
||||||
|
|
||||||
|
ECANCELED :: _Platform_Error.ECANCELED
|
||||||
|
|
||||||
|
EIDRM :: _Platform_Error.EIDRM
|
||||||
|
ENOMSG :: _Platform_Error.ENOMSG
|
||||||
|
EILSEQ :: _Platform_Error.EILSEQ
|
||||||
|
ENOATTR :: _Platform_Error.ENOATTR
|
||||||
|
|
||||||
|
EBADMSG :: _Platform_Error.EBADMSG
|
||||||
|
EMULTIHOP :: _Platform_Error.EMULTIHOP
|
||||||
|
ENODATA :: _Platform_Error.ENODATA
|
||||||
|
ENOLINK :: _Platform_Error.ENOLINK
|
||||||
|
ENOSR :: _Platform_Error.ENOSR
|
||||||
|
ENOSTR :: _Platform_Error.ENOSTR
|
||||||
|
EPROTO :: _Platform_Error.EPROTO
|
||||||
|
ETIME :: _Platform_Error.ETIME
|
||||||
|
|
||||||
|
ENOPOLICY :: _Platform_Error.ENOPOLICY
|
||||||
|
|
||||||
|
ENOTRECOVERABLE :: _Platform_Error.ENOTRECOVERABLE
|
||||||
|
EOWNERDEAD :: _Platform_Error.EOWNERDEAD
|
||||||
|
|
||||||
|
EQFULL :: _Platform_Error.EQFULL
|
||||||
|
ELAST :: _Platform_Error.ELAST
|
||||||
|
|
||||||
EPERM :: Platform_Error.EPERM
|
|
||||||
ENOENT :: Platform_Error.ENOENT
|
|
||||||
ESRCH :: Platform_Error.ESRCH
|
|
||||||
EINTR :: Platform_Error.EINTR
|
|
||||||
EIO :: Platform_Error.EIO
|
|
||||||
ENXIO :: Platform_Error.ENXIO
|
|
||||||
E2BIG :: Platform_Error.E2BIG
|
|
||||||
ENOEXEC :: Platform_Error.ENOEXEC
|
|
||||||
EBADF :: Platform_Error.EBADF
|
|
||||||
ECHILD :: Platform_Error.ECHILD
|
|
||||||
EDEADLK :: Platform_Error.EDEADLK
|
|
||||||
ENOMEM :: Platform_Error.ENOMEM
|
|
||||||
EACCES :: Platform_Error.EACCES
|
|
||||||
EFAULT :: Platform_Error.EFAULT
|
|
||||||
ENOTBLK :: Platform_Error.ENOTBLK
|
|
||||||
EBUSY :: Platform_Error.EBUSY
|
|
||||||
EEXIST :: Platform_Error.EEXIST
|
|
||||||
EXDEV :: Platform_Error.EXDEV
|
|
||||||
ENODEV :: Platform_Error.ENODEV
|
|
||||||
ENOTDIR :: Platform_Error.ENOTDIR
|
|
||||||
EISDIR :: Platform_Error.EISDIR
|
|
||||||
EINVAL :: Platform_Error.EINVAL
|
|
||||||
ENFILE :: Platform_Error.ENFILE
|
|
||||||
EMFILE :: Platform_Error.EMFILE
|
|
||||||
ENOTTY :: Platform_Error.ENOTTY
|
|
||||||
ETXTBSY :: Platform_Error.ETXTBSY
|
|
||||||
EFBIG :: Platform_Error.EFBIG
|
|
||||||
ENOSPC :: Platform_Error.ENOSPC
|
|
||||||
ESPIPE :: Platform_Error.ESPIPE
|
|
||||||
EROFS :: Platform_Error.EROFS
|
|
||||||
EMLINK :: Platform_Error.EMLINK
|
|
||||||
EPIPE :: Platform_Error.EPIPE
|
|
||||||
EDOM :: Platform_Error.EDOM
|
|
||||||
ERANGE :: Platform_Error.ERANGE
|
|
||||||
EAGAIN :: Platform_Error.EAGAIN
|
|
||||||
EWOULDBLOCK :: Platform_Error.EWOULDBLOCK
|
|
||||||
EINPROGRESS :: Platform_Error.EINPROGRESS
|
|
||||||
EALREADY :: Platform_Error.EALREADY
|
|
||||||
ENOTSOCK :: Platform_Error.ENOTSOCK
|
|
||||||
EDESTADDRREQ :: Platform_Error.EDESTADDRREQ
|
|
||||||
EMSGSIZE :: Platform_Error.EMSGSIZE
|
|
||||||
EPROTOTYPE :: Platform_Error.EPROTOTYPE
|
|
||||||
ENOPROTOOPT :: Platform_Error.ENOPROTOOPT
|
|
||||||
EPROTONOSUPPOR :: Platform_Error.EPROTONOSUPPOR
|
|
||||||
ESOCKTNOSUPPOR :: Platform_Error.ESOCKTNOSUPPOR
|
|
||||||
ENOTSUP :: Platform_Error.ENOTSUP
|
|
||||||
EOPNOTSUPP :: Platform_Error.EOPNOTSUPP
|
|
||||||
EPFNOSUPPORT :: Platform_Error.EPFNOSUPPORT
|
|
||||||
EAFNOSUPPORT :: Platform_Error.EAFNOSUPPORT
|
|
||||||
EADDRINUSE :: Platform_Error.EADDRINUSE
|
|
||||||
EADDRNOTAVAIL :: Platform_Error.EADDRNOTAVAIL
|
|
||||||
ENETDOWN :: Platform_Error.ENETDOWN
|
|
||||||
ENETUNREAC :: Platform_Error.ENETUNREAC
|
|
||||||
ENETRESET :: Platform_Error.ENETRESET
|
|
||||||
ECONNABORTE :: Platform_Error.ECONNABORTE
|
|
||||||
ECONNRESET :: Platform_Error.ECONNRESET
|
|
||||||
ENOBUFS :: Platform_Error.ENOBUFS
|
|
||||||
EISCONN :: Platform_Error.EISCONN
|
|
||||||
ENOTCONN :: Platform_Error.ENOTCONN
|
|
||||||
ESHUTDOWN :: Platform_Error.ESHUTDOWN
|
|
||||||
ETOOMANYREF :: Platform_Error.ETOOMANYREF
|
|
||||||
ETIMEDOUT :: Platform_Error.ETIMEDOUT
|
|
||||||
ECONNREFUSE :: Platform_Error.ECONNREFUSE
|
|
||||||
ELOOP :: Platform_Error.ELOOP
|
|
||||||
ENAMETOOLON :: Platform_Error.ENAMETOOLON
|
|
||||||
EHOSTDOWN :: Platform_Error.EHOSTDOWN
|
|
||||||
EHOSTUNREAC :: Platform_Error.EHOSTUNREAC
|
|
||||||
ENOTEMPTY :: Platform_Error.ENOTEMPTY
|
|
||||||
EPROCLIM :: Platform_Error.EPROCLIM
|
|
||||||
EUSERS :: Platform_Error.EUSERS
|
|
||||||
EDQUOT :: Platform_Error.EDQUOT
|
|
||||||
ESTALE :: Platform_Error.ESTALE
|
|
||||||
EREMOTE :: Platform_Error.EREMOTE
|
|
||||||
EBADRPC :: Platform_Error.EBADRPC
|
|
||||||
ERPCMISMATC :: Platform_Error.ERPCMISMATC
|
|
||||||
EPROGUNAVAI :: Platform_Error.EPROGUNAVAI
|
|
||||||
EPROGMISMATC :: Platform_Error.EPROGMISMATC
|
|
||||||
EPROCUNAVAI :: Platform_Error.EPROCUNAVAI
|
|
||||||
ENOLC :: Platform_Error.ENOLC
|
|
||||||
ENOSY :: Platform_Error.ENOSY
|
|
||||||
EFTYP :: Platform_Error.EFTYP
|
|
||||||
EAUT :: Platform_Error.EAUT
|
|
||||||
ENEEDAUT :: Platform_Error.ENEEDAUT
|
|
||||||
EPWROF :: Platform_Error.EPWROF
|
|
||||||
EDEVER :: Platform_Error.EDEVER
|
|
||||||
EOVERFLO :: Platform_Error.EOVERFLO
|
|
||||||
EBADEXE :: Platform_Error.EBADEXE
|
|
||||||
EBADARC :: Platform_Error.EBADARC
|
|
||||||
ESHLIBVER :: Platform_Error.ESHLIBVER
|
|
||||||
EBADMACH :: Platform_Error.EBADMACH
|
|
||||||
ECANCELE :: Platform_Error.ECANCELE
|
|
||||||
EIDRM :: Platform_Error.EIDRM
|
|
||||||
ENOMSG :: Platform_Error.ENOMSG
|
|
||||||
EILSEQ :: Platform_Error.EILSEQ
|
|
||||||
ENOATT :: Platform_Error.ENOATT
|
|
||||||
EBADMS :: Platform_Error.EBADMS
|
|
||||||
EMULTIHO :: Platform_Error.EMULTIHO
|
|
||||||
ENODAT :: Platform_Error.ENODAT
|
|
||||||
ENOLIN :: Platform_Error.ENOLIN
|
|
||||||
ENOSR :: Platform_Error.ENOSR
|
|
||||||
ENOSTR :: Platform_Error.ENOSTR
|
|
||||||
EPROTO :: Platform_Error.EPROTO
|
|
||||||
ETIME :: Platform_Error.ETIME
|
|
||||||
ENOPOLIC :: Platform_Error.ENOPOLIC
|
|
||||||
ENOTRECOVERABL :: Platform_Error.ENOTRECOVERABL
|
|
||||||
EOWNERDEAD :: Platform_Error.EOWNERDEAD
|
|
||||||
EQFUL :: Platform_Error.EQFUL
|
|
||||||
ELAS :: Platform_Error.ELAS
|
|
||||||
|
|
||||||
O_RDONLY :: 0x0000
|
O_RDONLY :: 0x0000
|
||||||
O_WRONLY :: 0x0001
|
O_WRONLY :: 0x0001
|
||||||
|
|||||||
Reference in New Issue
Block a user