Go to main content

man pages section 3: Library Interfaces and Headers

Exit Print View

Updated: Wednesday, July 27, 2022
 
 

APR::OS (3)

Name

APR::OS - specific APR API

Synopsis

use APR::OS ();

# get current thread id
my $tid = APR::OS::current_thread_id();

Description

User Contributed Perl Documentation
                                           build::amd64::docs::api::APR::OS(3)



NAME
       APR::OS - Perl API for Platform-specific APR API

Synopsis
         use APR::OS ();

         # get current thread id
         my $tid = APR::OS::current_thread_id();

Description
       "APR::OS" provides the Perl interface to platform-specific APR API.

       You should be extremely careful when relying on any of the API provided
       by this module, since they are no portable. So if you use those you
       application will be non-portable as well.

API
       "APR::OS" provides the following methods:

   "current_thread_id"
       Get the current thread ID

         $tid = APR::OS::current_thread_id();

       ret: $tid ( integer )
           under threaded MPMs returns the current thread ID, otherwise 0.

       since: 2.0.00

       Example:

           use Apache2::MPM ();
           use APR::OS ();
           if (Apache2::MPM->is_threaded) {
               my $tid_obj = APR::OS::current_thread_id();
               print "TID: $tid";
           }
           else {
               print "PID: $$";
           }

See Also
       mod_perl 2.0 documentation.

Copyright
       mod_perl 2.0 and its core modules are copyrighted under The Apache
       Software License, Version 2.0.

Authors
       The mod_perl development team and numerous contributors.



ATTRIBUTES
       See attributes(7) for descriptions of the following attributes:


       +---------------+-----------------------------------------+
       |ATTRIBUTE TYPE |            ATTRIBUTE VALUE              |
       +---------------+-----------------------------------------+
       |Availability   | web/server/apache-24/module/apache-perl |
       +---------------+-----------------------------------------+
       |Stability      | Uncommitted                             |
       +---------------+-----------------------------------------+

NOTES
       Source code for open source software components in Oracle Solaris can
       be found at https://www.oracle.com/downloads/opensource/solaris-source-
       code-downloads.html.

       This software was built from source available at
       https://github.com/oracle/solaris-userland.  The original community
       source was downloaded from
       https://www.apache.org/dist/perl/mod_perl-2.0.12.tar.gz.

       Further information about this software can be found on the open source
       community website at https://perl.apache.org/.



perl v5.32.0                      2022-01-30
                                           build::amd64::docs::api::APR::OS(3)