From 109f4cbc7f2228f5b3f6ca0ba596beff33ee6b53 Mon Sep 17 00:00:00 2001 From: "Michael J. Spencer" Date: Thu, 25 Nov 2010 01:53:59 +0000 Subject: system_error: Even more unsupported error numbers :(. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120139 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/System/system_error.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'include/llvm/System') diff --git a/include/llvm/System/system_error.h b/include/llvm/System/system_error.h index 73bf3dd..c17e7bf 100644 --- a/include/llvm/System/system_error.h +++ b/include/llvm/System/system_error.h @@ -506,7 +506,11 @@ enum _ { argument_out_of_domain = EDOM, bad_address = EFAULT, bad_file_descriptor = EBADF, +#ifdef EBADMSG bad_message = EBADMSG, +#else + bad_message = EINVAL, +#endif broken_pipe = EPIPE, connection_aborted = ECONNABORTED, connection_already_in_progress = EALREADY, @@ -536,7 +540,11 @@ enum _ { network_unreachable = ENETUNREACH, no_buffer_space = ENOBUFS, no_child_process = ECHILD, +#ifdef ENOLINK no_link = ENOLINK, +#else + no_link = EINVAL, +#endif no_lock_available = ENOLCK, #ifdef ENODATA no_message_available = ENODATA, @@ -580,7 +588,11 @@ enum _ { owner_dead = EINVAL, #endif permission_denied = EACCES, +#ifdef EPROTO protocol_error = EPROTO, +#else + protocol_error = EINVAL, +#endif protocol_not_supported = EPROTONOSUPPORT, read_only_file_system = EROFS, resource_deadlock_would_occur = EDEADLK, -- cgit v1.1