1. 17 8月, 2020 1 次提交
  2. 24 8月, 2018 1 次提交
    • R
      fix missing strerror text for EMULTIHOP · f4542fdf
      Rich Felker 提交于
      this is an obsolete error code from RFS, an obsolete predecessor of
      NFS. POSIX documents it only as "Reserved", but maintains the
      requirement that it be defined. as long as it is defined, it needs a
      string for strerror to produce; the one chosen matches glibc and
      documentation from other language runtimes I could find.
      f4542fdf
  3. 07 2月, 2013 2 次提交
    • R
      fix typo in newly-added error message for EOWNERDEAD · b9e08308
      Rich Felker 提交于
      b9e08308
    • R
      improve error strings · d75348dd
      Rich Felker 提交于
      this definitely has the potential to be a bikeshed topic, so some
      justification is in order. most of the changes made fit into one of
      the following categories:
      1. alignment with text in posix, xsh 2.3
      2. eliminating overly-specific text for shared error codes
      3. making the message match more closely with the macro name
      4. removing extraneous words
      
      in particular, the EAGAIN/EWOULDBLOCK text is updated to match the
      description of EAGAIN (which covers both uses) rather than saying the
      operation would block, and ENOTSUP/EOPNOTSUPP is updated not to
      mention sockets.
      
      the distinction between ENFILE/EMFILE has also been clarified; ENFILE
      is aligned with the posix text, and EMFILE, which lacks concise posix
      text matching any historic message, is updated to emphasize that the
      exhausted resource is not open files/open file descriptions, but
      rather the integer 'address space' of file descriptors.
      
      some messages may be further tweaked based on feedback.
      d75348dd
  4. 17 4月, 2012 1 次提交
  5. 12 2月, 2011 1 次提交