summaryrefslogtreecommitdiff
path: root/include/apr_thread_cond.h
Commit message (Collapse)AuthorAgeFilesLines
* Update the CV docs to add a few remarks. PR: 40971.davi2007-06-291-1/+6
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@551966 13f79535-47bb-0310-9956-ffa450edef68
* Fix the typo.jorton2006-08-031-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@428317 13f79535-47bb-0310-9956-ffa450edef68
* Update license header.jorton2006-08-031-6/+6
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@428313 13f79535-47bb-0310-9956-ffa450edef68
* Update copyright year to 2005 and standardize on current copyright owner line.jerenkrantz2005-02-041-1/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@151412 13f79535-47bb-0310-9956-ffa450edef68
* Relicense APR under Apache License, Version 2.0jerenkrantz2004-02-131-49/+10
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64904 13f79535-47bb-0310-9956-ffa450edef68
* * include/apr_thread_cond.h: Note when destroying a condvar givesjorton2003-12-291-0/+6
| | | | | | | | | | | | | | | undefined results in a POSIX implementation. * locks/unix/thread_cond.c (apr_thread_cond_create): Don't run cleanup if pthread_cond_init fails since that gives undefined results. (apr_thread_cond_destroy): Use apr_pool_cleanup_run so the cleanup is always unregistered. * test/testlock.c (test_cond): Test apr_thread_cond_destroy and use apr_assert_success() a little more. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64848 13f79535-47bb-0310-9956-ffa450edef68
* Spelling/grammar fixes.jorton2003-12-291-3/+3
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64846 13f79535-47bb-0310-9956-ffa450edef68
* Rebalance our exposed headers such that everything is nested properlywrowe2003-03-051-10/+10
| | | | | | | | | | | | | | between extern "C" blocks and doxygen blocks, that we never include other headers within our own header's extern "C" block, that we always tag the entire file contents for doxygen (within the APR_HEADER_H only-once block), and generally clean up doxygen so that it is all consistent and generates respectable (although not yet 'great') results. Major TODO after 0.9.2 releases; fill in the apr.h APR_HAVE/APR_HAS and apr_type_t documentation!!! git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64397 13f79535-47bb-0310-9956-ffa450edef68
* Update copyright notices to 2003.thommay2003-01-011-1/+1
| | | | | | | No functional changes git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64251 13f79535-47bb-0310-9956-ffa450edef68
* Go through doxygen output and remove as many errors and warnings as I could.jerenkrantz2002-11-101-0/+1
| | | | | | | | | | | No code changes. (Note removal of #define duplication in apr_poll.h/apr_network_io.h of the APR_POLL* values. This appears to have been an oversight and is now just in apr_poll.h) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64009 13f79535-47bb-0310-9956-ffa450edef68
* Update our copyright for this year.fielding2002-03-131-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63117 13f79535-47bb-0310-9956-ffa450edef68
* Adds apr_thread_cond_timedwait() interface to new lock API.aaron2001-10-121-2/+22
| | | | | | | Implements it for UNIX, stubs elsewhere. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62419 13f79535-47bb-0310-9956-ffa450edef68
* Implement pool accessors for thread_condition variables.rbb2001-09-291-0/+6
| | | | | | | Submitted by: Aaron Bannert <aaron@clove.org> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62385 13f79535-47bb-0310-9956-ffa450edef68
* thread condition stuff isn't available if !APR_HAS_THREADS... this getstrawick2001-09-131-0/+3
| | | | | | | Apache's exports.c to compile again when !APR_HAS_THREADS git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62320 13f79535-47bb-0310-9956-ffa450edef68
* Add condition variables to the APR set of locking functions.rbb2001-09-131-0/+136
This does Unix, and provides stubs for all other platforms. Submitted by: Aaron Bannert <aaron@clove.org> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62317 13f79535-47bb-0310-9956-ffa450edef68