Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 82222 invoked from network); 15 Jun 2009 00:04:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 15 Jun 2009 00:04:05 -0000 Received: (qmail 34892 invoked by uid 500); 15 Jun 2009 00:04:16 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 34824 invoked by uid 500); 15 Jun 2009 00:04:16 -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 34810 invoked by uid 99); 15 Jun 2009 00:04:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Jun 2009 00:04:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Mon, 15 Jun 2009 00:04:01 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B96512388A41; Mon, 15 Jun 2009 00:02:05 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r784636 [43/47] - in /apr/site/trunk/docs/docs: apr-util/trunk/ apr/trunk/ Date: Mon, 15 Jun 2009 00:01:47 -0000 To: commits@apr.apache.org From: bojan@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090615000205.B96512388A41@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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__poll.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__poll.html Mon Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Poll Routines - + - +

@@ -226,7 +227,7 @@

-Do not try default method if non default fails +Do not try to use the default method if the specified non-default method cannot be used

@@ -241,7 +242,7 @@

-Pollset Flags Adding or Removing a Descriptor is thread safe +Pollset Flags Adding or removing a descriptor is thread-safe

@@ -256,7 +257,7 @@

-Pollset poll operation is interruptable +Poll operations are interruptable by apr_pollset_wakeup()


Typedef Documentation

@@ -423,10 +424,10 @@ aprset The poll structure we will be using. numsock The number of descriptors we are polling nsds The number of descriptors signalled (output parameter) - timeout The amount of time in microseconds to wait. This is a maximum, not a minimum. If a descriptor is signalled, we will wake up before this time. A negative number means wait until a descriptor is signalled. + timeout The amount of time in microseconds to wait. This is a maximum, not a minimum. If a descriptor is signalled, the function will return before this time. If timeout is negative, the function will block until a descriptor is signalled or until apr_pollset_wakeup() has been called. -
Remarks:
The number of descriptors signalled is returned in the third argument. This is a blocking call, and it will not return until either a descriptor has been signalled, or the timeout has expired.

+

Remarks:
The number of descriptors signalled is returned in the third argument. This is a blocking call, and it will not return until either a descriptor has been signalled or the timeout has expired.

The rtnevents field in the apr_pollfd_t array will only be filled- in if the return value is APR_SUCCESS.

@@ -448,7 +449,7 @@

-Display the name of the default poll method: APR_POLLSET_DEFAULT +Return a printable representation of the default pollset method (APR_POLLSET_DEFAULT).

@@ -484,7 +485,8 @@

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.

+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.

+Do not add the same socket or file descriptor to the same pollcb multiple times, even if the requested events differ for the different calls to apr_pollcb_add(). If the events of interest for a descriptor change, you must first remove the descriptor from the pollcb with apr_pollcb_remove(), then add it again specifying all requested events.

@@ -526,7 +528,7 @@

-Setup a pollcb object

Parameters:
+Set up a pollcb object
Parameters:
@@ -582,16 +584,16 @@

-Setup a pollcb object

Parameters:
+Set up 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.
- +
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.
method Poll method to use. See .
method Poll method to use. See . If this method cannot be used, the default method will be used unless the APR_POLLSET_NODEFAULT flag has been specified.
-
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.
+
Remarks:
Pollcb is only supported on some platforms; the apr_pollcb_create_ex() call will fail with APR_ENOTIMPL on platforms where it is not supported.

@@ -636,11 +638,12 @@ Block for activity on the descriptor(s) in a pollcb

Parameters:
- - + +
pollcb The pollcb to use
timeout The amount of time in microseconds to wait. This is a maximum, not a minimum. If a descriptor is signalled, we will wake up before this time. A negative number means wait until a descriptor is signalled.
func Callback function to call for each active socket
timeout The amount of time in microseconds to wait. This is a maximum, not a minimum. If a descriptor is signalled, the function will return before this time. If timeout is negative, the function will block until a descriptor is signalled.
func Callback function to call for each active descriptor.
baton Opaque baton passed to the callback function.
+
Remarks:
Multiple signalled conditions for the same descriptor may be reported in one or more calls to the callback function, depending on the implementation.

@@ -676,6 +679,7 @@ descriptor The descriptor to remove +

Remarks:
apr_pollcb_remove() cannot be used to remove a subset of requested events for a descriptor. The reqevents field in the apr_pollfd_t parameter must contain the same value when removing as when adding.

@@ -712,7 +716,9 @@

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_pollset_poll().

-If the pollset has been created with APR_POLLSET_THREADSAFE and thread T1 is blocked in a call to apr_pollset_poll() for this same pollset that is being modified via apr_pollset_add() in thread T2, the currently executing apr_pollset_poll() call in T1 will either: (1) automatically include the newly added descriptor in the set of descriptors it is watching or (2) return immediately with APR_EINTR. Option (1) is recommended, but option (2) is allowed for implementations where option (1) is impossible or impractical.

+If the pollset has been created with APR_POLLSET_THREADSAFE and thread T1 is blocked in a call to apr_pollset_poll() for this same pollset that is being modified via apr_pollset_add() in thread T2, the currently executing apr_pollset_poll() call in T1 will either: (1) automatically include the newly added descriptor in the set of descriptors it is watching or (2) return immediately with APR_EINTR. Option (1) is recommended, but option (2) is allowed for implementations where option (1) is impossible or impractical.

+If the pollset has been created with APR_POLLSET_NOCOPY, the apr_pollfd_t structure referenced by descriptor will not be copied and must have a lifetime at least as long as the pollset.

+Do not add the same socket or file descriptor to the same pollset multiple times, even if the requested events differ for the different calls to apr_pollset_add(). If the events of interest for a descriptor change, you must first remove the descriptor from the pollset with apr_pollset_remove(), then add it again specifying all requested events.

@@ -754,7 +760,7 @@

-Setup a pollset object

Parameters:
+Set up a pollset object
Parameters:
@@ -762,8 +768,9 @@
pollset The pointer in which to return the newly created object
size The maximum number of descriptors that this pollset can hold
flags Optional flags to modify the operation of the pollset.
-
Remarks:
If flags equals APR_POLLSET_THREADSAFE, then a pollset is created on which it is safe to make concurrent calls to apr_pollset_add(), apr_pollset_remove() and apr_pollset_poll() from separate threads. This feature is only supported on some platforms; the apr_pollset_create() call will fail with APR_ENOTIMPL on platforms where it is not supported.

-If flags contain APR_POLLSET_WAKEABLE, then a pollset is created with additional internal pipe object used for apr_pollset_wakeup() call. The actual size of pollset is in that case size + 1. This feature is only supported on some platforms; the apr_pollset_create() call will fail with APR_ENOTIMPL on platforms where it is not supported.

+
Remarks:
If flags contains APR_POLLSET_THREADSAFE, then a pollset is created on which it is safe to make concurrent calls to apr_pollset_add(), apr_pollset_remove() and apr_pollset_poll() from separate threads. This feature is only supported on some platforms; the apr_pollset_create() call will fail with APR_ENOTIMPL on platforms where it is not supported.

+If flags contains APR_POLLSET_WAKEABLE, then a pollset is created with an additional internal pipe object used for the apr_pollset_wakeup() call. The actual size of pollset is in that case size + 1. This feature is only supported on some platforms; the apr_pollset_create() call will fail with APR_ENOTIMPL on platforms where it is not supported.

+If flags contains APR_POLLSET_NOCOPY, then the apr_pollfd_t structures passed to apr_pollset_add() are not copied and must have a lifetime at least as long as the pollset.

@@ -811,17 +818,18 @@

-Setup a pollset object

Parameters:
+Set up a pollset object
Parameters:
- +
pollset The pointer in which to return the newly created object
size The maximum number of descriptors that this pollset can hold
p The pool from which to allocate the pollset
flags Optional flags to modify the operation of the pollset.
method Poll method to use. See .
method Poll method to use. See . If this method cannot be used, the default method will be used unless the APR_POLLSET_NODEFAULT flag has been specified.
-
Remarks:
If flags equals APR_POLLSET_THREADSAFE, then a pollset is created on which it is safe to make concurrent calls to apr_pollset_add(), apr_pollset_remove() and apr_pollset_poll() from separate threads. This feature is only supported on some platforms; the apr_pollset_create() call will fail with APR_ENOTIMPL on platforms where it is not supported.

-If flags contain APR_POLLSET_WAKEABLE, then a pollset is created with additional internal pipe object used for apr_pollset_wakeup() call. The actual size of pollset is in that case size + 1. This feature is only supported on some platforms; the apr_pollset_create() call will fail with APR_ENOTIMPL on platforms where it is not supported.

+
Remarks:
If flags contains APR_POLLSET_THREADSAFE, then a pollset is created on which it is safe to make concurrent calls to apr_pollset_add(), apr_pollset_remove() and apr_pollset_poll() from separate threads. This feature is only supported on some platforms; the apr_pollset_create_ex() call will fail with APR_ENOTIMPL on platforms where it is not supported.

+If flags contains APR_POLLSET_WAKEABLE, then a pollset is created with additional internal pipe object used for the apr_pollset_wakeup() call. The actual size of pollset is in that case size + 1. This feature is only supported on some platforms; the apr_pollset_create_ex() call will fail with APR_ENOTIMPL on platforms where it is not supported.

+If flags contains APR_POLLSET_NOCOPY, then the apr_pollfd_t structures passed to apr_pollset_add() are not copied and must have a lifetime at least as long as the pollset.

@@ -867,9 +875,9 @@

-Display the name of the pollset method, as it relates to the actual method used.

Parameters:
+Return a printable representation of the pollset method.
Parameters:
- +
pollset the name of the pollset.
pollset The pollset to use
@@ -916,12 +924,13 @@ Block for activity on the descriptor(s) in a pollset
Parameters:
- +
pollset The pollset to use
timeout The amount of time in microseconds to wait. This is a maximum, not a minimum. If a descriptor is signalled, we will wake up before this time. A negative number means wait until a descriptor is signalled.
timeout The amount of time in microseconds to wait. This is a maximum, not a minimum. If a descriptor is signalled, the function will return before this time. If timeout is negative, the function will block until a descriptor is signalled or until apr_pollset_wakeup() has been called.
num Number of signalled descriptors (output parameter)
descriptors Array of signalled descriptors (output parameter)
-
Remarks:
If the pollset has been created with APR_POLLSET_WAKEABLE and the wakeup has been called while waiting for activity return value is APR_EINTR in case there was no signaled descriptors at the time of wakeup call.
+
Remarks:
APR_EINTR will be returned if the pollset has been created with APR_POLLSET_WAKEABLE, apr_pollset_wakeup() has been called while waiting for activity, and there were no signalled descriptors at the time of the wakeup call.

+Multiple signalled conditions for the same descriptor may be reported in one or more returned apr_pollfd_t structures, depending on the implementation.

@@ -957,7 +966,8 @@ descriptor The descriptor to remove -

Remarks:
If the pollset has been created with APR_POLLSET_THREADSAFE and thread T1 is blocked in a call to apr_pollset_poll() for this same pollset that is being modified via apr_pollset_remove() in thread T2, the currently executing apr_pollset_poll() call in T1 will either: (1) automatically exclude the newly added descriptor in the set of descriptors it is watching or (2) return immediately with APR_EINTR. Option (1) is recommended, but option (2) is allowed for implementations where option (1) is impossible or impractical.
+
Remarks:
If the pollset has been created with APR_POLLSET_THREADSAFE and thread T1 is blocked in a call to apr_pollset_poll() for this same pollset that is being modified via apr_pollset_remove() in thread T2, the currently executing apr_pollset_poll() call in T1 will either: (1) automatically exclude the newly added descriptor in the set of descriptors it is watching or (2) return immediately with APR_EINTR. Option (1) is recommended, but option (2) is allowed for implementations where option (1) is impossible or impractical.

+apr_pollset_remove() cannot be used to remove a subset of requested events for a descriptor. The reqevents field in the apr_pollfd_t parameter must contain the same value when removing as when adding.

@@ -978,7 +988,7 @@

-Interrupt the blocked apr_pollset_poll call.

Parameters:
+Interrupt the blocked apr_pollset_poll() call.
Parameters:
pollset The pollset to use
@@ -988,8 +998,8 @@

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:30 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__pools.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__pools.html Mon Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Memory Pool Functions - + - +

- -

-
- - - - - - - - - -
apr_allocator_t* apr_pool_allocator_get (apr_pool_t pool  ) 
-
-
- -

-Find the pools allocator

Parameters:
- - -
pool The pool to get the allocator from.
-
- -
-

@@ -581,111 +542,6 @@

- -

-
- - - - - - - - - -
apr_status_t apr_pool_create_core (apr_pool_t **  newpool  ) 
-
-
- -

-Create a new pool.

Parameters:
- - -
newpool The pool we have just created.
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
apr_status_t apr_pool_create_core_ex (apr_pool_t **  newpool,
apr_abortfunc_t  abort_fn,
apr_allocator_t allocator 
)
-
-
- -

-Create a new pool.

Deprecated:
-
See also:
apr_pool_create_unmanaged_ex.
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
apr_status_t apr_pool_create_core_ex_debug (apr_pool_t **  newpool,
apr_abortfunc_t  abort_fn,
apr_allocator_t allocator,
const char *  file_line 
)
-
-
- -

-Debug version of apr_pool_create_core_ex.

Deprecated:
-
See also:
apr_pool_create_unmanaged_ex_debug.
- -
-

@@ -812,114 +668,6 @@

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
apr_status_t apr_pool_create_unmanaged_ex (apr_pool_t **  newpool,
apr_abortfunc_t  abort_fn,
apr_allocator_t allocator 
)
-
-
- -

-Create a new unmanaged pool.

Parameters:
- - - - -
newpool The pool we have just created.
abort_fn A function to use if the pool cannot allocate more memory.
allocator The allocator to use with the new pool. If NULL a new allocator will be crated with newpool as owner.
-
-
Remarks:
An unmanaged pool is a special pool without a parent; it will NOT be destroyed upon apr_terminate. It must be explicitly destroyed by calling apr_pool_destroy, to prevent memory leaks. Use of this function is discouraged, think twice about whether you really really need it.
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
apr_status_t apr_pool_create_unmanaged_ex_debug (apr_pool_t **  newpool,
apr_abortfunc_t  abort_fn,
apr_allocator_t allocator,
const char *  file_line 
)
-
-
- -

-Debug version of apr_pool_create_unmanaged_ex.

Parameters:
- - -
newpool 
-
-
See also:
apr_pool_create_unmanaged.
-
Parameters:
- - -
abort_fn 
-
-
See also:
apr_pool_create_unmanaged.
-
Parameters:
- - -
allocator 
-
-
See also:
apr_pool_create_unmanaged.
-
Parameters:
- - -
file_line Where the function is called from. This is usually APR_POOL__FILE_LINE__.
-
-
Remarks:
Only available when APR_POOL_DEBUG is defined. Call this directly if you have you apr_pool_create_unmanaged_ex calls in a wrapper function and wish to override the file_line argument to reflect the caller of your wrapper function. If you do not have apr_pool_create_core_ex in a wrapper, trust the macro and don't call apr_pool_create_core_ex_debug directly.
- -
-

@@ -1267,8 +1015,8 @@

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:30 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__portabile.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__portabile.html Mon Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Portability Routines - + - +

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:30 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- 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 Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Process Locking Routines - + - +

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:30 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__random.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__random.html Mon Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Random Functions - + - +

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:30 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__ring.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__ring.html Mon Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Ring Macro Implementations - + - +

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:30 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__shm.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__shm.html Mon Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Shared Memory Routines - + - +

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:30 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__signal.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__signal.html Mon Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Signal Handling - + - +

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:30 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__sockopt.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__sockopt.html Mon Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Socket option definitions - + - +

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:30 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__strings.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__strings.html Mon Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: String routines - + - +

@@ -921,8 +922,8 @@

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:30 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__support.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__support.html Mon Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Internal APR support functions - + - +

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:30 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__tables.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__tables.html Mon Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Table and Array Functions - + - +

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:30 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- 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 Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Condition Variable Routines - + - +

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:30 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- 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 Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Thread Mutex Routines - + - +

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:30 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- 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 Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Threads and Process Functions - + - +

@@ -1362,7 +1363,7 @@

Remarks:
This is NOT a required initializer function. This is useful if you have already opened a pipe (or multiple files) that you wish to use, perhaps persistently across multiple process invocations - such as a log file.
-
Bug:
Note that calling this function with two NULL files on some platforms creates an APR_FULL_BLOCK pipe, but this behavior is neither portable nor is it supported.
+
Bug:
Note that calling this function with two NULL files on some platforms creates an APR_FULL_BLOCK pipe, but this behavior is neither portable nor is it supported.
See also:
apr_procattr_io_set instead for simple pipes.
@@ -1443,7 +1444,7 @@
Remarks:
This is NOT a required initializer function. This is useful if you have already opened a pipe (or multiple files) that you wish to use, perhaps persistently across multiple process invocations - such as a log file. You can save some extra function calls by not creating your own pipe since this creates one in the process space for you.
-
Bug:
Note that calling this function with two NULL files on some platforms creates an APR_FULL_BLOCK pipe, but this behavior is neither portable nor is it supported.
+
Bug:
Note that calling this function with two NULL files on some platforms creates an APR_FULL_BLOCK pipe, but this behavior is neither portable nor is it supported.
See also:
apr_procattr_io_set instead for simple pipes.
@@ -1488,7 +1489,7 @@
Remarks:
This is NOT a required initializer function. This is useful if you have already opened a pipe (or multiple files) that you wish to use, perhaps persistently across multiple process invocations - such as a log file.
-
Bug:
Note that calling this function with two NULL files on some platforms creates an APR_FULL_BLOCK pipe, but this behavior is neither portable nor is it supported.
+
Bug:
Note that calling this function with two NULL files on some platforms creates an APR_FULL_BLOCK pipe, but this behavior is neither portable nor is it supported.
See also:
apr_procattr_io_set instead for simple pipes.
@@ -2692,8 +2693,8 @@

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:31 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- 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 Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Reader/Writer Lock Routines - + - +

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:31 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__time.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__time.html Mon Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: Time Routines - + - +

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:31 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8
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?rev=784636&r1=784635&r2=784636&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/group__apr__user.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/group__apr__user.html Mon Jun 15 00:01:38 2009 @@ -1,16 +1,17 @@ Apache Portable Runtime: User and Group ID Services - + - +

-


Generated on Fri Feb 20 16:49:32 2009 for Apache Portable Runtime by  +
Generated on Mon Jun 15 09:45:31 2009 for Apache Portable Runtime by  -doxygen 1.5.7.1
+doxygen 1.5.8