diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-08-10 09:38:28 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-08-10 09:51:54 +0700 |
commit | 3bef3b2cd64d3e6061eef6de08a6d384e59f7c27 (patch) | |
tree | d9685411896d560adcc27099b759b04d85f45d08 /src/library.js | |
parent | 0a39d6902565771e6a07a8b1e0229d257dfc0b7c (diff) |
Remove errno codes that don't exist in musl.
Diffstat (limited to 'src/library.js')
-rw-r--r-- | src/library.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/library.js b/src/library.js index f0302aaa..14fd3e1b 100644 --- a/src/library.js +++ b/src/library.js @@ -8217,10 +8217,8 @@ LibraryManager.library = { ECOMM: {{{ cDefine('ECOMM') }}}, EPROTO: {{{ cDefine('EPROTO') }}}, EMULTIHOP: {{{ cDefine('EMULTIHOP') }}}, - ELBIN: {{{ cDefine('ELBIN') }}}, EDOTDOT: {{{ cDefine('EDOTDOT') }}}, EBADMSG: {{{ cDefine('EBADMSG') }}}, - EFTYPE: {{{ cDefine('EFTYPE') }}}, ENOTUNIQ: {{{ cDefine('ENOTUNIQ') }}}, EBADFD: {{{ cDefine('EBADFD') }}}, EREMCHG: {{{ cDefine('EREMCHG') }}}, @@ -8230,7 +8228,6 @@ LibraryManager.library = { ELIBMAX: {{{ cDefine('ELIBMAX') }}}, ELIBEXEC: {{{ cDefine('ELIBEXEC') }}}, ENOSYS: {{{ cDefine('ENOSYS') }}}, - ENMFILE: {{{ cDefine('ENMFILE') }}}, ENOTEMPTY: {{{ cDefine('ENOTEMPTY') }}}, ENAMETOOLONG: {{{ cDefine('ENAMETOOLONG') }}}, ELOOP: {{{ cDefine('ELOOP') }}}, @@ -8262,14 +8259,11 @@ LibraryManager.library = { EISCONN: {{{ cDefine('EISCONN') }}}, ENOTCONN: {{{ cDefine('ENOTCONN') }}}, ETOOMANYREFS: {{{ cDefine('ETOOMANYREFS') }}}, - EPROCLIM: {{{ cDefine('EPROCLIM') }}}, EUSERS: {{{ cDefine('EUSERS') }}}, EDQUOT: {{{ cDefine('EDQUOT') }}}, ESTALE: {{{ cDefine('ESTALE') }}}, ENOTSUP: {{{ cDefine('ENOTSUP') }}}, ENOMEDIUM: {{{ cDefine('ENOMEDIUM') }}}, - ENOSHARE: {{{ cDefine('ENOSHARE') }}}, - ECASECLASH: {{{ cDefine('ECASECLASH') }}}, EILSEQ: {{{ cDefine('EILSEQ') }}}, EOVERFLOW: {{{ cDefine('EOVERFLOW') }}}, ECANCELED: {{{ cDefine('ECANCELED') }}}, @@ -8346,10 +8340,8 @@ LibraryManager.library = { {{{ cDefine('ECOMM') }}}: 'Communication error on send', {{{ cDefine('EPROTO') }}}: 'Protocol error', {{{ cDefine('EMULTIHOP') }}}: 'Multihop attempted', - {{{ cDefine('ELBIN') }}}: 'Inode is remote (not really error)', {{{ cDefine('EDOTDOT') }}}: 'Cross mount point (not really error)', {{{ cDefine('EBADMSG') }}}: 'Trying to read unreadable message', - {{{ cDefine('EFTYPE') }}}: 'Inappropriate file type or format', {{{ cDefine('ENOTUNIQ') }}}: 'Given log. name not unique', {{{ cDefine('EBADFD') }}}: 'f.d. invalid for this operation', {{{ cDefine('EREMCHG') }}}: 'Remote address changed', @@ -8359,7 +8351,6 @@ LibraryManager.library = { {{{ cDefine('ELIBMAX') }}}: 'Attempting to link in too many libs', {{{ cDefine('ELIBEXEC') }}}: 'Attempting to exec a shared library', {{{ cDefine('ENOSYS') }}}: 'Function not implemented', - {{{ cDefine('ENMFILE') }}}: 'No more files', {{{ cDefine('ENOTEMPTY') }}}: 'Directory not empty', {{{ cDefine('ENAMETOOLONG') }}}: 'File or path name too long', {{{ cDefine('ELOOP') }}}: 'Too many symbolic links', @@ -8391,14 +8382,11 @@ LibraryManager.library = { {{{ cDefine('EISCONN') }}}: 'Socket is already connected', {{{ cDefine('ENOTCONN') }}}: 'Socket is not connected', {{{ cDefine('ETOOMANYREFS') }}}: 'TOOMANYREFS', - {{{ cDefine('EPROCLIM') }}}: 'EPROCLIM', {{{ cDefine('EUSERS') }}}: 'EUSERS', {{{ cDefine('EDQUOT') }}}: 'EDQUOT', {{{ cDefine('ESTALE') }}}: 'ESTALE', {{{ cDefine('ENOTSUP') }}}: 'Not supported', {{{ cDefine('ENOMEDIUM') }}}: 'No medium (in tape drive)', - {{{ cDefine('ENOSHARE') }}}: 'No such host or network path', - {{{ cDefine('ECASECLASH') }}}: 'Filename exists with different case', {{{ cDefine('EILSEQ') }}}: 'EILSEQ', {{{ cDefine('EOVERFLOW') }}}: 'Value too large for defined data type', {{{ cDefine('ECANCELED') }}}: 'Operation canceled', |