dougm       02/05/22 09:30:40

  Modified:    t/apr    .cvsignore
               xs/maps  apr_functions.map apr_types.map
               xs/tables/current/ModPerl FunctionTable.pm
  Log:
  add APR::OS::thread_current function
  
  Revision  Changes    Path
  1.5       +1 -0      modperl-2.0/t/apr/.cvsignore
  
  Index: .cvsignore
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/apr/.cvsignore,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- .cvsignore        6 Mar 2002 05:24:57 -0000       1.4
  +++ .cvsignore        22 May 2002 16:30:40 -0000      1.5
  @@ -9,3 +9,4 @@
   table.t
   util.t
   uuid.t
  +os.t
  
  
  
  1.41      +25 -25    modperl-2.0/xs/maps/apr_functions.map
  
  Index: apr_functions.map
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/maps/apr_functions.map,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- apr_functions.map 19 May 2002 23:59:52 -0000      1.40
  +++ apr_functions.map 22 May 2002 16:30:40 -0000      1.41
  @@ -591,28 +591,28 @@
    apr_xlate_get_sb
    apr_xlate_open
   
  --MODULE=APR::OS
  - apr_os_dir_get
  - apr_os_exp_time_get
  - apr_os_file_get
  - apr_os_imp_time_get
  - apr_os_sock_get
  - apr_os_thread_get
  - apr_os_threadkey_get
  - apr_os_sock_make
  - apr_os_dir_put
  - apr_os_exp_time_put
  - apr_os_file_put
  - apr_os_imp_time_put
  - apr_os_sock_put
  - apr_os_thread_put
  - apr_os_threadkey_put
  - apr_os_dso_handle_get
  - apr_os_dso_handle_put
  - apr_os_thread_current
  - apr_os_thread_equal
  - apr_os_global_mutex_get
  - apr_os_proc_mutex_get
  - apr_os_proc_mutex_put
  - apr_os_shm_get
  - apr_os_shm_put
  +MODULE=APR::OS
  +-apr_os_dir_get
  +-apr_os_exp_time_get
  +-apr_os_file_get
  +-apr_os_imp_time_get
  +-apr_os_sock_get
  +-apr_os_thread_get
  +-apr_os_threadkey_get
  +-apr_os_sock_make
  +-apr_os_dir_put
  +-apr_os_exp_time_put
  +-apr_os_file_put
  +-apr_os_imp_time_put
  +-apr_os_sock_put
  +-apr_os_thread_put
  +-apr_os_threadkey_put
  +-apr_os_dso_handle_get
  +-apr_os_dso_handle_put
  + apr_os_thread_current | | mpxs_
  +-apr_os_thread_equal
  +-apr_os_global_mutex_get
  +-apr_os_proc_mutex_get
  +-apr_os_proc_mutex_put
  +-apr_os_shm_get
  +-apr_os_shm_put
  
  
  
  1.17      +1 -1      modperl-2.0/xs/maps/apr_types.map
  
  Index: apr_types.map
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/maps/apr_types.map,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- apr_types.map     19 May 2002 01:05:30 -0000      1.16
  +++ apr_types.map     22 May 2002 16:30:40 -0000      1.17
  @@ -96,7 +96,7 @@
   #thread stuff
   struct apr_threadkey_t       | UNDEFINED
   struct apr_os_threadkey_t    | UNDEFINED
  -struct apr_os_thread_t       | UNDEFINED
  +struct apr_os_thread_t       | PTR
   struct apr_thread_t          | UNDEFINED
   apr_thread_start_t           | UNDEFINED
   struct apr_threadattr_t      | UNDEFINED
  
  
  
  1.67      +15 -1     modperl-2.0/xs/tables/current/ModPerl/FunctionTable.pm
  
  Index: FunctionTable.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/tables/current/ModPerl/FunctionTable.pm,v
  retrieving revision 1.66
  retrieving revision 1.67
  diff -u -r1.66 -r1.67
  --- FunctionTable.pm  21 May 2002 02:50:16 -0000      1.66
  +++ FunctionTable.pm  22 May 2002 16:30:40 -0000      1.67
  @@ -2,7 +2,7 @@
   
   # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   # ! WARNING: generated by ModPerl::ParseSource/0.01
  -# !          Mon May 20 19:15:12 2002
  +# !          Wed May 22 09:10:46 2002
   # !          do NOT edit, any changes will be lost !
   # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   
  @@ -5195,6 +5195,20 @@
         {
           'type' => 'const char *',
           'name' => 'mask_or_numbits'
  +      }
  +    ]
  +  },
  +  {
  +    'return_type' => 'apr_os_thread_t',
  +    'name' => 'mpxs_apr_os_thread_current',
  +    'attr' => [
  +      'static',
  +      '__inline__'
  +    ],
  +    'args' => [
  +      {
  +        'type' => 'PerlInterpreter *',
  +        'name' => 'my_perl'
         }
       ]
     },
  
  
  


Reply via email to