summaryrefslogtreecommitdiff
path: root/include/apr_inherit.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove trailing whitespaces.Ivan Zhakov2022-11-191-8/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1905407 13f79535-47bb-0310-9956-ffa450edef68
* Fix doc errors in APR header files.Jeff Trawick2013-06-251-2/+2
| | | | | | | | PR: 55133 Submitted by: Mike Rumph <mike.rumph oracle.com> git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1496407 13f79535-47bb-0310-9956-ffa450edef68
* Fix the typo.Joe Orton2006-08-031-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@428317 13f79535-47bb-0310-9956-ffa450edef68
* Update license header.Joe Orton2006-08-031-6/+6
| | | | git-svn-id: https://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.Justin Erenkrantz2005-02-041-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@151412 13f79535-47bb-0310-9956-ffa450edef68
* Relicense APR under Apache License, Version 2.0Justin Erenkrantz2004-02-131-49/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64904 13f79535-47bb-0310-9956-ffa450edef68
* Rebalance our exposed headers such that everything is nested properlyWilliam A. Rowe Jr2003-03-051-27/+23
| | | | | | | | | | | | | | 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: https://svn.apache.org/repos/asf/apr/apr/trunk@64397 13f79535-47bb-0310-9956-ffa450edef68
* Update copyright notices to 2003.Thom May2003-01-011-1/+1
| | | | | | | No functional changes git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64251 13f79535-47bb-0310-9956-ffa450edef68
* Fix the parameter name in the inherit_set/unset functions so thatCliff Woolley2002-07-161-2/+4
| | | | | | | | | | | it avoids shadowing global symbols (as with "socket"). Reported by: Karl Fogel PS: I'm sure somebody will tell me if I horribly broke win32. :) git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63685 13f79535-47bb-0310-9956-ffa450edef68
* Changed the return values of the apr_*_inherit_(un)set functions fromBranko Čibej2002-07-051-2/+2
| | | | | | | | | | | void to apr_status_t. The deprecated versios, apr_*_(un)set_inherit, are still void, so that we don't inadvertently break code that uses them. Updated all uses of apr_file_inherit_set in threadproc/win32/proc.c, and replaced make_handle_private with apr_file_inherit_unset. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63576 13f79535-47bb-0310-9956-ffa450edef68
* Last for today (compiles clean on Win32, hope the same for the rest ofWilliam A. Rowe Jr2002-06-081-5/+6
| | | | | | | | our builds.) Clean up inherit_[un]set and simplify win32 discrepancy with inherit.h git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63481 13f79535-47bb-0310-9956-ffa450edef68
* Update our copyright for this year.Roy T. Fielding2002-03-131-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63117 13f79535-47bb-0310-9956-ffa450edef68
* Next batch of moving the docs from ScanDoc to DoxyGen.Ryan Bloom2001-08-141-1/+19
| | | | | | | Submitted by: Ian Holsman <ianh@cnet.com> git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62158 13f79535-47bb-0310-9956-ffa450edef68
* Clean up APR_INHERIT - it's now a private flag.William A. Rowe Jr2001-07-181-2/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61963 13f79535-47bb-0310-9956-ffa450edef68
* apr_socket_[un]set_inherit is a noop on Win32, but must be exported.William A. Rowe Jr2001-07-181-3/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61960 13f79535-47bb-0310-9956-ffa450edef68
* Split public from private declaration for INHERIT stuffWilliam A. Rowe Jr2001-07-161-20/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61949 13f79535-47bb-0310-9956-ffa450edef68
* In order to use this IMPLEMENT_SET/UNSET schema, this has got to be aWilliam A. Rowe Jr2001-07-161-8/+8
| | | | | | | | bit flag... the apr_file_t already has too many int flags hiding in it, and ->flags is already a member of the apr_file_t. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61946 13f79535-47bb-0310-9956-ffa450edef68
* Yup Ian... this was borked :-)William A. Rowe Jr2001-07-161-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61944 13f79535-47bb-0310-9956-ffa450edef68
* Change 'inherit' to a usual flags value, use 2^24 for the first ratherWilliam A. Rowe Jr2001-07-161-10/+14
| | | | | | | | global switch value. We may have more (APR_THREAD_SAFE, anyone?) that are very consistent from type to type, pick those up from 2^25. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61940 13f79535-47bb-0310-9956-ffa450edef68
* Added an inherit flag to apr_socket_create and other socket creationRyan Bloom2001-07-161-0/+91
functions. This allows APR programs to specify that a socket should be passed to any child processes that are created. The inherit flag is only meaningful if programs use apr_process_create(). This also adds a couple of macros that allow APR types to set and unset the inherit flag. This also fixes Apache to use the new API. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61939 13f79535-47bb-0310-9956-ffa450edef68