Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 6935 invoked from network); 2 Apr 2007 07:56:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Apr 2007 07:56:03 -0000 Received: (qmail 2511 invoked by uid 500); 2 Apr 2007 07:56:10 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 2473 invoked by uid 500); 2 Apr 2007 07:56:10 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 2462 invoked by uid 99); 2 Apr 2007 07:56:10 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Apr 2007 00:56:10 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Apr 2007 00:56:01 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 31DD71A9850; Mon, 2 Apr 2007 00:55:15 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r524741 [6/6] - in /apr/site/trunk/docs/docs: apr-util/trunk/ apr/trunk/ Date: Mon, 02 Apr 2007 07:54:09 -0000 To: commits@apr.apache.org From: bojan@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070402075515.31DD71A9850@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__poll.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__poll.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__poll.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__poll.html Mon Apr 2 00:53:42 2007 @@ -46,6 +46,10 @@ typedef apr_pollset_t apr_pollset_t +typedef apr_pollcb_t apr_pollcb_t + +typedef apr_status_t(*) apr_pollcb_cb_t (void *baton, apr_pollfd_t *descriptor) +

Enumerations

enum  apr_datatype_e { APR_NO_DESC, APR_POLL_SOCKET, @@ -66,6 +70,14 @@ apr_status_t apr_poll (apr_pollfd_t *aprset, apr_int32_t numsock, apr_int32_t *nsds, apr_interval_time_t timeout) +apr_status_t apr_pollcb_create (apr_pollcb_t **pollcb, apr_uint32_t size, apr_pool_t *pool, apr_uint32_t flags) + +apr_status_t apr_pollcb_add (apr_pollcb_t *pollcb, apr_pollfd_t *descriptor) + +apr_status_t apr_pollcb_remove (apr_pollcb_t *pollcb, apr_pollfd_t *descriptor) + +apr_status_t apr_pollcb_poll (apr_pollcb_t *pollcb, apr_interval_time_t timeout, apr_pollcb_cb_t func, void *baton) +

Define Documentation

@@ -189,6 +201,42 @@


Typedef Documentation

+ +
+
+ + + + +
typedef apr_status_t(*) apr_pollcb_cb_t(void *baton, apr_pollfd_t *descriptor)
+
+
+ +

+Function prototype for pollcb handlers

Parameters:
+ + + +
baton Opaque baton passed into apr_pollcb_poll
descriptor Contains the notification for an active descriptor, the rtnevents member contains what events were triggered for this descriptor.
+
+ +
+

+ +

+
+ + + + +
typedef struct apr_pollcb_t apr_pollcb_t
+
+
+ +

+Opaque structure used for pollset API +

+

@@ -300,6 +348,177 @@

+ +

+
+ + + + + + + + + + + + + + + + + + +
apr_status_t apr_pollcb_add (apr_pollcb_t pollcb,
apr_pollfd_t descriptor 
)
+
+
+ +

+Add a socket or file descriptor to a pollcb

Parameters:
+ + + +
pollcb The pollcb to which to add the descriptor
descriptor The descriptor to add
+
+
Remarks:
If you set client_data in the descriptor, that value will be returned in the client_data field whenever this descriptor is signalled in apr_pollcb_poll().

+Unlike the apr_pollset API, the descriptor is not copied, and users must retain the memory used by descriptor, as the same pointer will be returned to them from apr_pollcb_poll.

+ +
+

+ +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
apr_status_t apr_pollcb_create (apr_pollcb_t **  pollcb,
apr_uint32_t  size,
apr_pool_t pool,
apr_uint32_t  flags 
)
+
+
+ +

+Setup a pollcb object

Parameters:
+ + + + + +
pollcb The pointer in which to return the newly created object
size The maximum number of descriptors that a single _poll can return.
p The pool from which to allocate the pollcb
flags Optional flags to modify the operation of the pollcb.
+
+
Remarks:
Pollcb is only supported on some platforms; the apr_pollcb_create() call will fail with APR_ENOTIMPL on platforms where it is not supported.
+ +
+

+ +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
apr_status_t apr_pollcb_poll (apr_pollcb_t pollcb,
apr_interval_time_t  timeout,
apr_pollcb_cb_t  func,
void *  baton 
)
+
+
+ +

+Block for activity on the descriptor(s) in a pollcb

Parameters:
+ + + + + +
pollcb The pollcb to use
timeout Timeout in microseconds
func Callback function to call for each active socket
baton Opaque baton passed to the callback function.
+
+ +
+

+ +

+
+ + + + + + + + + + + + + + + + + + +
apr_status_t apr_pollcb_remove (apr_pollcb_t pollcb,
apr_pollfd_t descriptor 
)
+
+
+ +

+Remove a descriptor from a pollcb

Parameters:
+ + + +
pollcb The pollcb from which to remove the descriptor
descriptor The descriptor to remove
+
+ +
+

@@ -497,7 +716,7 @@

-


Generated on Sat Feb 17 13:54:05 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__pools.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__pools.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__pools.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__pools.html Mon Apr 2 00:53:42 2007 @@ -1036,7 +1036,7 @@

-


Generated on Sat Feb 17 13:54:05 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__portabile.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__portabile.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__portabile.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__portabile.html Mon Apr 2 00:53:42 2007 @@ -1037,7 +1037,7 @@

-


Generated on Sat Feb 17 13:54:05 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__proc__mutex.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__proc__mutex.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__proc__mutex.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__proc__mutex.html Mon Apr 2 00:53:42 2007 @@ -421,7 +421,7 @@

-


Generated on Sat Feb 17 13:54:05 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__random.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__random.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__random.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__random.html Mon Apr 2 00:53:42 2007 @@ -56,7 +56,7 @@

-


Generated on Sat Feb 17 13:54:05 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__ring.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__ring.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__ring.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__ring.html Mon Apr 2 00:53:42 2007 @@ -1065,7 +1065,7 @@

-


Generated on Sat Feb 17 13:54:05 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__shm.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__shm.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__shm.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__shm.html Mon Apr 2 00:53:42 2007 @@ -307,7 +307,7 @@

-


Generated on Sat Feb 17 13:54:05 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__signal.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__signal.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__signal.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__signal.html Mon Apr 2 00:53:42 2007 @@ -184,7 +184,7 @@

-


Generated on Sat Feb 17 13:54:05 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__sockopt.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__sockopt.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__sockopt.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__sockopt.html Mon Apr 2 00:53:42 2007 @@ -279,7 +279,7 @@ No push

-


Generated on Sat Feb 17 13:54:05 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__strings.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__strings.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__strings.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__strings.html Mon Apr 2 00:53:42 2007 @@ -915,7 +915,7 @@

-


Generated on Sat Feb 17 13:54:05 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__support.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__support.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__support.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__support.html Mon Apr 2 00:53:42 2007 @@ -68,7 +68,7 @@

-


Generated on Sat Feb 17 13:54:05 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__tables.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__tables.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__tables.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__tables.html Mon Apr 2 00:53:42 2007 @@ -1295,7 +1295,7 @@

-


Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__cond.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__cond.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__cond.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__cond.html Mon Apr 2 00:53:42 2007 @@ -263,7 +263,7 @@

-


Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__mutex.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__mutex.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__mutex.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__mutex.html Mon Apr 2 00:53:42 2007 @@ -274,7 +274,7 @@

-


Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__proc.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__proc.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__proc.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__proc.html Mon Apr 2 00:53:42 2007 @@ -2554,7 +2554,7 @@

-


Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__rwlock.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__rwlock.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__rwlock.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__thread__rwlock.html Mon Apr 2 00:53:42 2007 @@ -263,7 +263,7 @@

-


Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__time.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__time.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__time.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__time.html Mon Apr 2 00:53:42 2007 @@ -807,7 +807,7 @@ month names

-


Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/group__apr__user.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/group__apr__user.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__user.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__user.html Mon Apr 2 00:53:42 2007 @@ -403,7 +403,7 @@

-


Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/include_2apr__hash_8h-example.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/include_2apr__hash_8h-example.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/include_2apr__hash_8h-example.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/include_2apr__hash_8h-example.html Mon Apr 2 00:53:42 2007 @@ -27,7 +27,7 @@ return sum; }

-


Generated on Sat Feb 17 13:54:04 2007 for Apache Portable Runtime by  +

Generated on Mon Apr 2 15:33:55 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/index.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/index.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/index.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/index.html Mon Apr 2 00:53:42 2007 @@ -16,7 +16,7 @@

Apache Portable Runtime Documentation

-


Generated on Sat Feb 17 13:54:04 2007 for Apache Portable Runtime by  +
Generated on Mon Apr 2 15:33:55 2007 for Apache Portable Runtime by  doxygen 1.5.1
Modified: apr/site/trunk/docs/docs/apr/trunk/modules.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/modules.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/modules.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/modules.html Mon Apr 2 00:53:42 2007 @@ -91,7 +91,7 @@
  • Random Functions
  • ctype functions -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/pages.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/pages.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/pages.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/pages.html Mon Apr 2 00:53:42 2007 @@ -20,7 +20,7 @@
  • Deprecated List -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/sha2_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/sha2_8h-source.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/sha2_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/sha2_8h-source.html Mon Apr 2 00:53:42 2007 @@ -105,7 +105,7 @@ 00084 00085 #endif /* __SHA2_H__ */ 00086 -
    Generated on Sat Feb 17 13:54:05 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:56 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__array__header__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__array__header__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__array__header__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__array__header__t.html Mon Apr 2 00:53:42 2007 @@ -119,7 +119,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__finfo__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__finfo__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__finfo__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__finfo__t.html Mon Apr 2 00:53:42 2007 @@ -323,7 +323,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__getopt__option__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__getopt__option__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__getopt__option__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__getopt__option__t.html Mon Apr 2 00:53:42 2007 @@ -102,7 +102,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__getopt__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__getopt__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__getopt__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__getopt__t.html Mon Apr 2 00:53:42 2007 @@ -238,7 +238,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__hdtr__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__hdtr__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__hdtr__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__hdtr__t.html Mon Apr 2 00:53:42 2007 @@ -102,7 +102,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__memnode__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__memnode__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__memnode__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__memnode__t.html Mon Apr 2 00:53:42 2007 @@ -137,7 +137,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__mmap__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__mmap__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__mmap__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__mmap__t.html Mon Apr 2 00:53:42 2007 @@ -109,7 +109,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__os__proc__mutex__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__os__proc__mutex__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__os__proc__mutex__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__os__proc__mutex__t.html Mon Apr 2 00:53:42 2007 @@ -85,7 +85,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__os__sock__info__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__os__sock__info__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__os__sock__info__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__os__sock__info__t.html Mon Apr 2 00:53:42 2007 @@ -136,7 +136,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__pollfd__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__pollfd__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__pollfd__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__pollfd__t.html Mon Apr 2 00:53:42 2007 @@ -137,7 +137,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__proc__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__proc__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__proc__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__proc__t.html Mon Apr 2 00:53:42 2007 @@ -139,7 +139,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__sockaddr__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__sockaddr__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__sockaddr__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__sockaddr__t.html Mon Apr 2 00:53:42 2007 @@ -274,7 +274,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__table__entry__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__table__entry__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__table__entry__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__table__entry__t.html Mon Apr 2 00:53:42 2007 @@ -85,7 +85,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__time__exp__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__time__exp__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__time__exp__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__time__exp__t.html Mon Apr 2 00:53:42 2007 @@ -223,7 +223,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__version__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__version__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__version__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__version__t.html Mon Apr 2 00:53:42 2007 @@ -99,7 +99,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/structapr__vformatter__buff__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/structapr__vformatter__buff__t.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/structapr__vformatter__buff__t.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/structapr__vformatter__buff__t.html Mon Apr 2 00:53:42 2007 @@ -68,7 +68,7 @@


    The documentation for this struct was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr/trunk/unionapr__descriptor.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/unionapr__descriptor.html?view=diff&rev=524741&r1=524740&r2=524741 ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/unionapr__descriptor.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/unionapr__descriptor.html Mon Apr 2 00:53:42 2007 @@ -68,7 +68,7 @@


    The documentation for this union was generated from the following file: -
    Generated on Sat Feb 17 13:54:06 2007 for Apache Portable Runtime by  +
    Generated on Mon Apr 2 15:33:57 2007 for Apache Portable Runtime by  doxygen 1.5.1