8#ifndef INCLUDED_BSLSTL_ERRC
9#define INCLUDED_BSLSTL_ERRC
95#include <bslscm_version.h>
105#ifndef BDE_DONT_ALLOW_TRANSITIVE_INCLUDES
109#ifdef BSLS_LIBRARYFEATURES_HAS_CPP11_BASELINE_LIBRARY
111#include <system_error>
140 address_family_not_supported = EAFNOSUPPORT,
141 address_in_use = EADDRINUSE,
142 address_not_available = EADDRNOTAVAIL,
143 already_connected = EISCONN,
144 argument_list_too_long = E2BIG,
145 argument_out_of_domain = EDOM,
146 bad_address = EFAULT,
147 bad_file_descriptor = EBADF,
148 bad_message = EBADMSG,
150 connection_aborted = ECONNABORTED,
151 connection_already_in_progress = EALREADY,
152 connection_refused = ECONNREFUSED,
153 connection_reset = ECONNRESET,
154 cross_device_link = EXDEV,
155 destination_address_required = EDESTADDRREQ,
156 device_or_resource_busy = EBUSY,
157 directory_not_empty = ENOTEMPTY,
158 executable_format_error = ENOEXEC,
159 file_exists = EEXIST,
160 file_too_large = EFBIG,
161 filename_too_long = ENAMETOOLONG,
162 function_not_supported = ENOSYS,
163 host_unreachable = EHOSTUNREACH,
164 identifier_removed = EIDRM,
165 illegal_byte_sequence = EILSEQ,
166 inappropriate_io_control_operation = ENOTTY,
168 invalid_argument = EINVAL,
169 invalid_seek = ESPIPE,
171 is_a_directory = EISDIR,
172 message_size = EMSGSIZE,
173 network_down = ENETDOWN,
174 network_reset = ENETRESET,
175 network_unreachable = ENETUNREACH,
176 no_buffer_space = ENOBUFS,
177 no_child_process = ECHILD,
179 no_lock_available = ENOLCK,
180 no_message_available = ENODATA,
182 no_protocol_option = ENOPROTOOPT,
183 no_space_on_device = ENOSPC,
184 no_stream_resources = ENOSR,
185 no_such_device_or_address = ENXIO,
186 no_such_device = ENODEV,
187 no_such_file_or_directory = ENOENT,
188 no_such_process = ESRCH,
189 not_a_directory = ENOTDIR,
190 not_a_socket = ENOTSOCK,
191 not_a_stream = ENOSTR,
192 not_connected = ENOTCONN,
193 not_enough_memory = ENOMEM,
194 not_supported = ENOTSUP,
195 operation_canceled = ECANCELED,
196 operation_in_progress = EINPROGRESS,
197 operation_not_permitted = EPERM,
198 operation_not_supported = EOPNOTSUPP,
199 operation_would_block = EWOULDBLOCK,
200 owner_dead = EOWNERDEAD,
201 permission_denied = EACCES,
202 protocol_error = EPROTO,
203 protocol_not_supported = EPROTONOSUPPORT,
204 read_only_file_system = EROFS,
205 resource_deadlock_would_occur = EDEADLK,
206 resource_unavailable_try_again = EAGAIN,
207 result_out_of_range = ERANGE,
208 state_not_recoverable = ENOTRECOVERABLE,
209 stream_timeout = ETIME,
210 text_file_busy = ETXTBSY,
211 timed_out = ETIMEDOUT,
212 too_many_files_open_in_system = ENFILE,
213 too_many_files_open = EMFILE,
214 too_many_links = EMLINK,
215 too_many_symbolic_link_levels = ELOOP,
216 value_too_large = EOVERFLOW,
217 wrong_protocol_type = EPROTOTYPE
229struct is_error_condition_enum<errc::Enum> :
public bsl::true_type {
#define BSLS_IDENT(str)
Definition bsls_ident.h:195
Definition bdlb_printmethods.h:283
std::errc ErrcEnum
Definition bslstl_errc.h:116