summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorpquerna <pquerna@13f79535-47bb-0310-9956-ffa450edef68>2004-11-20 00:28:19 +0000
committerpquerna <pquerna@13f79535-47bb-0310-9956-ffa450edef68>2004-11-20 00:28:19 +0000
commit51231e0d77df00769036ed8979098facd7a86610 (patch)
tree1f18a66cdb44a6d4509ffb6ce5b62f9bb14d11a8 /CHANGES
parentffef2cdb8c40de72f6eae0263c117eef0f8cbdbb (diff)
downloadlibapr-51231e0d77df00769036ed8979098facd7a86610.tar.gz
This commit may break the win32 or netware builds because of the added files.
Added the APR_POLLSET_THREADSAFE flag for apr_pollset_create(). The flag is only supported by the KQueue or EPoll backends at this time. All others should return ENOTIMPL. Split poll/unix/poll.c into one file for each backend to better maintain them. Tested On: FreeBSD 5.2.1, Linux 2.6 and OS X 10.3.6. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@105905 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 09a4d9cd5..1a5130701 100644
--- a/CHANGES
+++ b/CHANGES
@@ -5,6 +5,13 @@ Changes for APR 1.1.0
and upgrading it to do SHA-256. Not yet ready for prime time.
[Ben Laurie]
+ *) Added the APR_POLLSET_THREADSAFE flag. This allows multiple threads
+ to call the Pollset Add or Remove functions in a thread safe manner.
+ Currently only EPoll and KQueue support this flag. [Paul Querna]
+
+ *) Split poll/unix/poll.c into separate files for each Poll or Pollset
+ implementation. [Paul Querna]
+
*) Rewrite apr_file_printf to handle arbitrary length strings.
PR 28029. [Chris Knight <Christopher.D.Knight nasa.gov>,
Garrett Rooney <rooneg electricjellyfish.net>]