Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id ED01E77D1 for ; Thu, 20 Oct 2011 06:14:55 +0000 (UTC) Received: (qmail 22189 invoked by uid 500); 20 Oct 2011 06:14:55 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 21978 invoked by uid 500); 20 Oct 2011 06:14:54 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 21959 invoked by uid 99); 20 Oct 2011 06:14:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Oct 2011 06:14:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Oct 2011 06:14:52 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C5F642388962 for ; Thu, 20 Oct 2011 06:14:31 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1186624 - /commons/sandbox/runtime/trunk/src/main/native/include/acr/error.h Date: Thu, 20 Oct 2011 06:14:31 -0000 To: commits@commons.apache.org From: mturk@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111020061431.C5F642388962@eris.apache.org> Author: mturk Date: Thu Oct 20 06:14:31 2011 New Revision: 1186624 URL: http://svn.apache.org/viewvc?rev=1186624&view=rev Log: Fix duplicate error entry Modified: commons/sandbox/runtime/trunk/src/main/native/include/acr/error.h Modified: commons/sandbox/runtime/trunk/src/main/native/include/acr/error.h URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/include/acr/error.h?rev=1186624&r1=1186623&r2=1186624&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/src/main/native/include/acr/error.h (original) +++ commons/sandbox/runtime/trunk/src/main/native/include/acr/error.h Thu Oct 20 06:14:31 2011 @@ -655,6 +655,8 @@ enum { #define ACR_EACCES (ACR_OS_START_CANONERR + 13) /** Bad address */ #define ACR_EFAULT (ACR_OS_START_CANONERR + 14) +/** Block device required */ +#define ACR_ENOTBLK (ACR_OS_START_CANONERR + 15) /** Device busy */ #define ACR_EBUSY (ACR_OS_START_CANONERR + 16) /** File exists */ @@ -675,8 +677,8 @@ enum { #define ACR_EMFILE (ACR_OS_START_CANONERR + 24) /** Inappropriate ioctl for device */ #define ACR_ENOTTY (ACR_OS_START_CANONERR + 25) -/** File name too long */ -#define ACR_ENAMETOOLONG (ACR_OS_START_CANONERR + 63) +/** Text file busy */ +#define ACR_ETXTBSY (ACR_OS_START_CANONERR + 26) /** File too large */ #define ACR_EFBIG (ACR_OS_START_CANONERR + 27) /** No space left on device */ @@ -695,25 +697,6 @@ enum { #define ACR_ERANGE (ACR_OS_START_CANONERR + 34) /** Resource temporarily unavailable */ #define ACR_EAGAIN (ACR_OS_START_CANONERR + 35) -/** No locks available */ -#define ACR_ENOLCK (ACR_OS_START_CANONERR + 77) -/** Function not implemented */ -#define ACR_ENOSYS (ACR_OS_START_CANONERR + 77) -/** Illegal byte sequence */ -#define ACR_EILSEQ (ACR_OS_START_CANONERR + 84) - -/** Conversion overflow */ -#define ACR_EOVERFLOW (ACR_OS_START_CANONERR + 87) -/** Operation canceled */ -#define ACR_ECANCELED (ACR_OS_START_CANONERR + 88) -/** Identifier removed */ -#define ACR_EIDRM (ACR_OS_START_CANONERR + 89) -/** No message of desired type */ -#define ACR_ENOMSG (ACR_OS_START_CANONERR + 90) -/** Block device required */ -#define ACR_ENOTBLK (ACR_OS_START_CANONERR + 15) -/** Text file busy */ -#define ACR_ETXTBSY (ACR_OS_START_CANONERR + 26) /** Operation would block */ #define ACR_EWOULDBLOCK (ACR_OS_START_CANONERR + 35) /** Operation now in progress */ @@ -770,6 +753,8 @@ enum { #define ACR_ECONNREFUSED (ACR_OS_START_CANONERR + 61) /** Too many levels of symbolic links */ #define ACR_ELOOP (ACR_OS_START_CANONERR + 62) +/** File name too long */ +#define ACR_ENAMETOOLONG (ACR_OS_START_CANONERR + 63) /** Host is down */ #define ACR_EHOSTDOWN (ACR_OS_START_CANONERR + 64) /** No route to host */ @@ -796,6 +781,10 @@ enum { #define ACR_EPROGMISMATCH (ACR_OS_START_CANONERR + 75) /** Bad procedure for program */ #define ACR_EPROCUNAVAIL (ACR_OS_START_CANONERR + 76) +/** No locks available */ +#define ACR_ENOLCK (ACR_OS_START_CANONERR + 77) +/** Function not implemented */ +#define ACR_ENOSYS (ACR_OS_START_CANONERR + 78) /** Inappropriate file type or format */ #define ACR_EFTYPE (ACR_OS_START_CANONERR + 79) /** Authentication error */ @@ -806,10 +795,20 @@ enum { #define ACR_EIPSEC (ACR_OS_START_CANONERR + 82) /** Attribute not found */ #define ACR_ENOATTR (ACR_OS_START_CANONERR + 83) +/** Illegal byte sequence */ +#define ACR_EILSEQ (ACR_OS_START_CANONERR + 84) /** No medium found */ #define ACR_ENOMEDIUM (ACR_OS_START_CANONERR + 85) /** Wrong Medium Type */ #define ACR_EMEDIUMTYPE (ACR_OS_START_CANONERR + 86) +/** Conversion overflow */ +#define ACR_EOVERFLOW (ACR_OS_START_CANONERR + 87) +/** Operation canceled */ +#define ACR_ECANCELED (ACR_OS_START_CANONERR + 88) +/** Identifier removed */ +#define ACR_EIDRM (ACR_OS_START_CANONERR + 89) +/** No message of desired type */ +#define ACR_ENOMSG (ACR_OS_START_CANONERR + 90) #else /* Posix ACR CANONICAL ERROR VALUES */