diff options
author | ktietz <ktietz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-29 19:57:24 +0000 |
---|---|---|
committer | ktietz <ktietz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-29 19:57:24 +0000 |
commit | db27024be83a18cee34e791acbc1020338274df5 (patch) | |
tree | 26b3aed8cf62cb5da657955ba954674ee5423bfe /libstdc++-v3/config.h.in | |
parent | 625b8e97f6f97078299969fab004d540a021716a (diff) | |
download | gcc-db27024be83a18cee34e791acbc1020338274df5.tar.gz |
* configure: Regenerated.
* config.h.in: Regenerated.
* acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR) Add
checks for ECHILD, ENOSPC, EPERM, ETIMEDOUT, and
EWOULDBLOCK.
* config/os/mingw32/error_constants.h (errc): Add
enumerator values no_child_process, no_space_on_device,
not_supported, operation_not_permitted, operation_would_block,
timed_out, and value_too_large,
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@178257 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/config.h.in')
-rw-r--r-- | libstdc++-v3/config.h.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libstdc++-v3/config.h.in b/libstdc++-v3/config.h.in index 837e2c7d082..167f574ffc5 100644 --- a/libstdc++-v3/config.h.in +++ b/libstdc++-v3/config.h.in @@ -60,6 +60,9 @@ /* Define if ECANCELED exists. */ #undef HAVE_ECANCELED +/* Define if ECHILD exists. */ +#undef HAVE_ECHILD + /* Define if EIDRM exists. */ #undef HAVE_EIDRM @@ -72,6 +75,9 @@ /* Define if ENOLINK exists. */ #undef HAVE_ENOLINK +/* Define if ENOSPC exists. */ +#undef HAVE_ENOSPC + /* Define if ENOSR exists. */ #undef HAVE_ENOSR @@ -90,15 +96,24 @@ /* Define if EOWNERDEAD exists. */ #undef HAVE_EOWNERDEAD +/* Define if EPERM exists. */ +#undef HAVE_EPERM + /* Define if EPROTO exists. */ #undef HAVE_EPROTO /* Define if ETIME exists. */ #undef HAVE_ETIME +/* Define if ETIMEDOUT exists. */ +#undef HAVE_ETIMEDOUT + /* Define if ETXTBSY exists. */ #undef HAVE_ETXTBSY +/* Define if EWOULDBLOCK exists. */ +#undef HAVE_EWOULDBLOCK + /* Define to 1 if you have the <execinfo.h> header file. */ #undef HAVE_EXECINFO_H |