summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2020-11-27 18:27:08 +0000
committerYann Ylavic <ylavic@apache.org>2020-11-27 18:27:08 +0000
commit150cc61d491d51c8fe3b5c2eb7b3db74efbdb3fa (patch)
tree21a0337653044b675630861dc41c7a4139c481e9 /misc
parente70d77ecc4aa9e0dccac6e7e5ba74639f71f50cf (diff)
downloadapr-150cc61d491d51c8fe3b5c2eb7b3db74efbdb3fa.tar.gz
apr_errno: add APR_EALREADY, eventually mapped from system's [WSA]EALREADY.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1883874 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'misc')
-rw-r--r--misc/unix/errorcodes.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/misc/unix/errorcodes.c b/misc/unix/errorcodes.c
index a45d43f52..f106cde28 100644
--- a/misc/unix/errorcodes.c
+++ b/misc/unix/errorcodes.c
@@ -139,6 +139,8 @@ static char *apr_error_string(apr_status_t statcode)
return "The given lock was busy.";
case APR_EPROC_UNKNOWN:
return "The process is not recognized.";
+ case APR_EALREADY:
+ return "Operation already in progress";
case APR_EGENERAL:
return "Internal error (specific information not available)";