Usermode/libc - Added ENOTTY to errno
authorJohn Hodge <[email protected]>
Tue, 30 Jul 2013 03:02:08 +0000 (11:02 +0800)
committerJohn Hodge <[email protected]>
Tue, 30 Jul 2013 03:02:08 +0000 (11:02 +0800)
Usermode/Libraries/libc.so_src/errno.c
Usermode/Libraries/libc.so_src/include_exp/errno.enum.h

index af369b1..a2d7890 100644 (file)
@@ -42,6 +42,7 @@ EXPORT char *strerror(int errnum)
        case EADDRNOTAVAIL:     return "Address not avaliable";
        case EINPROGRESS:       return "Operation in process";
        case EPERM:     return "Operation not permitted";
+       case ENOTTY:    return "Not a TTY";
        case EAGAIN:    return "Try again";
        case EALREADY:  return "Operation was no-op";
        case EINTERNAL: return "Internal error";
index be953d4..3ebf26d 100755 (executable)
@@ -23,6 +23,7 @@ enum libc_eErrorNumbers {
        EADDRNOTAVAIL,  // ?
        EINPROGRESS,    // ?
        EPERM,  // Permissions error
+       ENOTTY, // not a tty
 
        EAGAIN, // Try again
        EALREADY,       // Operation was a NOP

UCC git Repository :: git.ucc.asn.au