1 // Specific definitions for generic platforms -*- C++ -*-
3 // Copyright (C) 2007, 2008 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction. Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License. This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
30 /** @file error_constants.h
31 * This is an internal header file, included by other library headers.
32 * You should not attempt to use it directly.
35 #ifndef _GLIBCXX_ERROR_CONSTANTS
36 #define _GLIBCXX_ERROR_CONSTANTS 1
38 #include <bits/c++config.h>
41 _GLIBCXX_BEGIN_NAMESPACE(std)
47 address_family_not_supported = EAFNOSUPPORT,
48 address_in_use = EADDRINUSE,
49 address_not_available = EADDRNOTAVAIL,
50 already_connected = EISCONN,
51 argument_list_too_long = E2BIG,
52 argument_out_of_domain = EDOM,
54 bad_file_descriptor = EBADF,
56 #ifdef _GLIBCXX_HAVE_EBADMSG
57 bad_message = EBADMSG,
61 connection_aborted = ECONNABORTED,
62 connection_already_in_progress = EALREADY,
63 connection_refused = ECONNREFUSED,
64 connection_reset = ECONNRESET,
65 cross_device_link = EXDEV,
66 destination_address_required = EDESTADDRREQ,
67 device_or_resource_busy = EBUSY,
68 directory_not_empty = ENOTEMPTY,
69 executable_format_error = ENOEXEC,
71 file_too_large = EFBIG,
72 filename_too_long = ENAMETOOLONG,
73 function_not_supported = ENOSYS,
74 host_unreachable = EHOSTUNREACH,
76 #ifdef _GLIBCXX_HAVE_EIDRM
77 identifier_removed = EIDRM,
80 illegal_byte_sequence = EILSEQ,
81 inappropriate_io_control_operation = ENOTTY,
83 invalid_argument = EINVAL,
84 invalid_seek = ESPIPE,
86 is_a_directory = EISDIR,
87 message_size = EMSGSIZE,
88 network_down = ENETDOWN,
89 network_reset = ENETRESET,
90 network_unreachable = ENETUNREACH,
91 no_buffer_space = ENOBUFS,
92 no_child_process = ECHILD,
94 #ifdef _GLIBCXX_HAVE_ENOLINK
98 no_lock_available = ENOLCK,
100 #ifdef _GLIBCXX_HAVE_ENODATA
101 no_message_available = ENODATA,
105 no_protocol_option = ENOPROTOOPT,
106 no_space_on_device = ENOSPC,
108 #ifdef _GLIBCXX_HAVE_ENOSR
109 no_stream_resources = ENOSR,
112 no_such_device_or_address = ENXIO,
113 no_such_device = ENODEV,
114 no_such_file_or_directory = ENOENT,
115 no_such_process = ESRCH,
116 not_a_directory = ENOTDIR,
117 not_a_socket = ENOTSOCK,
119 #ifdef _GLIBCXX_HAVE_ENOSTR
120 not_a_stream = ENOSTR,
123 not_connected = ENOTCONN,
124 not_enough_memory = ENOMEM,
126 #ifdef _GLIBCXX_HAVE_ENOTSUP
127 not_supported = ENOTSUP,
130 #ifdef _GLIBCXX_HAVE_ECANCELED
131 operation_canceled = ECANCELED,
134 operation_in_progress = EINPROGRESS,
135 operation_not_permitted = EPERM,
136 operation_not_supported = EOPNOTSUPP,
137 operation_would_block = EWOULDBLOCK,
139 #ifdef _GLIBCXX_HAVE_EOWNERDEAD
140 owner_dead = EOWNERDEAD,
143 permission_denied = EACCES,
145 #ifdef _GLIBCXX_HAVE_EPROTO
146 protocol_error = EPROTO,
149 protocol_not_supported = EPROTONOSUPPORT,
150 read_only_file_system = EROFS,
151 resource_deadlock_would_occur = EDEADLK,
152 resource_unavailable_try_again = EAGAIN,
153 result_out_of_range = ERANGE,
155 #ifdef _GLIBCXX_HAVE_ENOTRECOVERABLE
156 state_not_recoverable = ENOTRECOVERABLE,
159 #ifdef _GLIBCXX_HAVE_ETIME
160 stream_timeout = ETIME,
163 #ifdef _GLIBCXX_HAVE_ETXTBSY
164 text_file_busy = ETXTBSY,
167 timed_out = ETIMEDOUT,
168 too_many_files_open_in_system = ENFILE,
169 too_many_files_open = EMFILE,
170 too_many_links = EMLINK,
171 too_many_synbolic_link_levels = ELOOP,
173 #ifdef _GLIBCXX_HAVE_EOVERFLOW
174 value_too_large = EOVERFLOW,
177 wrong_protocol_type = EPROTOTYPE,
178 no_posix_equivalent = 1L << 16
182 _GLIBCXX_END_NAMESPACE