-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* error.c (Init_syserr): moved to the template.
(errno_missing): removed. fixed [ruby-dev:35958]. * defs/knwon_errors.def: added. extracted from Init_syserr. * templates/known_errors.inc.tmpl: added. Template for Init_syserr. c.f. [ruby-dev:35958]. * tools/generic_erb.rb: added. general purpose mapper which maps data+template into source code. * common.mk (error.$(OBJEXT), incs, known_errors.inc): Fixed dependencies. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19575 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
Showing
6 changed files
with
166 additions
and
386 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
Fri Sep 26 17:07:04 2008 Yuki Sonoda (Yugui) <[email protected]> | ||
|
||
* error.c (Init_syserr): moved to the template. | ||
(errno_missing): removed. fixed [ruby-dev:35958]. | ||
|
||
* defs/knwon_errors.def: added. extracted from Init_syserr. | ||
|
||
* templates/known_errors.inc.tmpl: added. Template for Init_syserr. | ||
c.f. [ruby-dev:35958]. | ||
|
||
* tools/generic_erb.rb: added. general purpose mapper which maps | ||
data+template into source code. | ||
|
||
* common.mk (error.$(OBJEXT), incs, known_errors.inc): | ||
Fixed dependencies. | ||
|
||
Fri Sep 26 17:02:04 2008 Nobuyoshi Nakada <[email protected]> | ||
|
||
* thread.c (thlist_signal): clears the woken thread if nothing woke. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
EPERM | ||
ENOENT | ||
ESRCH | ||
EINTR | ||
EIO | ||
ENXIO | ||
E2BIG | ||
ENOEXEC | ||
EBADF | ||
ECHILD | ||
EAGAIN | ||
ENOMEM | ||
EACCES | ||
EFAULT | ||
ENOTBLK | ||
EBUSY | ||
EEXIST | ||
EXDEV | ||
ENODEV | ||
ENOTDIR | ||
EISDIR | ||
EINVAL | ||
ENFILE | ||
EMFILE | ||
ENOTTY | ||
ETXTBSY | ||
EFBIG | ||
ENOSPC | ||
ESPIPE | ||
EROFS | ||
EMLINK | ||
EPIPE | ||
EDOM | ||
ERANGE | ||
EDEADLK | ||
ENAMETOOLONG | ||
ENOLCK | ||
ENOSYS | ||
ENOTEMPTY | ||
ELOOP | ||
EWOULDBLOCK | ||
ENOMSG | ||
EIDRM | ||
ECHRNG | ||
EL2NSYNC | ||
EL3HLT | ||
EL3RST | ||
ELNRNG | ||
EUNATCH | ||
ENOCSI | ||
EL2HLT | ||
EBADE | ||
EBADR | ||
EXFULL | ||
ENOANO | ||
EBADRQC | ||
EBADSLT | ||
EDEADLOCK | ||
EBFONT | ||
ENOSTR | ||
ENODATA | ||
ETIME | ||
ENOSR | ||
ENONET | ||
ENOPKG | ||
EREMOTE | ||
ENOLINK | ||
EADV | ||
ESRMNT | ||
ECOMM | ||
EPROTO | ||
EMULTIHOP | ||
EDOTDOT | ||
EBADMSG | ||
EOVERFLOW | ||
ENOTUNIQ | ||
EBADFD | ||
EREMCHG | ||
ELIBACC | ||
ELIBBAD | ||
ELIBSCN | ||
ELIBMAX | ||
ELIBEXEC | ||
EILSEQ | ||
ERESTART | ||
ESTRPIPE | ||
EUSERS | ||
ENOTSOCK | ||
EDESTADDRREQ | ||
EMSGSIZE | ||
EPROTOTYPE | ||
ENOPROTOOPT | ||
EPROTONOSUPPORT | ||
ESOCKTNOSUPPORT | ||
EOPNOTSUPP | ||
EPFNOSUPPORT | ||
EAFNOSUPPORT | ||
EADDRINUSE | ||
EADDRNOTAVAIL | ||
ENETDOWN | ||
ENETUNREACH | ||
ENETRESET | ||
ECONNABORTED | ||
ECONNRESET | ||
ENOBUFS | ||
EISCONN | ||
ENOTCONN | ||
ESHUTDOWN | ||
ETOOMANYREFS | ||
ETIMEDOUT | ||
ECONNREFUSED | ||
EHOSTDOWN | ||
EHOSTUNREACH | ||
EALREADY | ||
EINPROGRESS | ||
ESTALE | ||
EUCLEAN | ||
ENOTNAM | ||
ENAVAIL | ||
EISNAM | ||
EREMOTEIO | ||
EDQUOT |
Oops, something went wrong.