Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 4865 invoked by uid 500); 29 Dec 2002 22:31:46 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 4854 invoked from network); 29 Dec 2002 22:31:46 -0000 Date: 29 Dec 2002 22:31:45 -0000 Message-ID: <20021229223145.16643.qmail@icarus.apache.org> From: rbb@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/include apr_errno.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N rbb 2002/12/29 14:31:45 Modified: include apr_errno.h Log: Add the new error codes for DSO failures. Revision Changes Path 1.106 +5 -0 apr/include/apr_errno.h Index: apr_errno.h =================================================================== RCS file: /home/cvs/apr/include/apr_errno.h,v retrieving revision 1.105 retrieving revision 1.106 diff -u -r1.105 -r1.106 --- apr_errno.h 28 Dec 2002 20:39:49 -0000 1.105 +++ apr_errno.h 29 Dec 2002 22:31:45 -0000 1.106 @@ -226,6 +226,7 @@ * APR_EGENERAL General failure (specific information not available) * APR_EBADIP The specified IP address is invalid * APR_EBADMASK The specified netmask is invalid + * APR_ESYMNOTFOUND Could not find the requested symbol * * *
  @@ -309,6 +310,8 @@
   #define APR_EBADPATH       (APR_OS_START_ERROR + 24)
   /** @see APR_STATUS_IS_EPATHWILD */
   #define APR_EPATHWILD      (APR_OS_START_ERROR + 25)
  +/** @see APR_STATUS_IS_ESYMNOTFOUND */
  +#define APR_ESYMNOTFOUND   (APR_OS_START_ERROR + 26)
   
   /* APR ERROR VALUE TESTS */
   /** 
  @@ -379,6 +382,8 @@
   #define APR_STATUS_IS_EBADPATH(s)       ((s) == APR_EBADPATH)
   /** The given path contained wildcards. */
   #define APR_STATUS_IS_EPATHWILD(s)      ((s) == APR_EPATHWILD)
  +/** Could not find the requested symbol. */
  +#define APR_STATUS_IS_ESYMNOTFOUND(s)   ((s) == APR_ESYMNOTFOUND)
   
   /* APR STATUS VALUES */
   /** @see APR_STATUS_IS_INCHILD */