You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bn...@apache.org on 2001/08/02 22:44:43 UTC

cvs commit: apr/include apr_portable.h

bnicholes    01/08/02 13:44:43

  Modified:    include  apr_portable.h
  Log:
  Added the NetWare specific typedef's
  
  Revision  Changes    Path
  1.65      +12 -0     apr/include/apr_portable.h
  
  Index: apr_portable.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_portable.h,v
  retrieving revision 1.64
  retrieving revision 1.65
  diff -u -r1.64 -r1.65
  --- apr_portable.h	2001/07/18 16:56:06	1.64
  +++ apr_portable.h	2001/08/02 20:44:43	1.65
  @@ -136,6 +136,18 @@
   typedef struct tm             apr_os_exp_time_t;
   typedef image_id              apr_os_dso_handle_t;
   
  +#elif defined(NETWARE)
  +typedef int                   apr_os_file_t;
  +typedef DIR                   apr_os_dir_t;
  +typedef int                   apr_os_sock_t;
  +typedef NXMutex_t             apr_os_lock_t;
  +typedef NXThreadId_t          apr_os_thread_t;
  +typedef long                  apr_os_proc_t;
  +typedef NXKey_t               apr_os_threadkey_t; 
  +typedef struct timeval        apr_os_imp_time_t;
  +typedef struct tm             apr_os_exp_time_t;
  +typedef void *                apr_os_dso_handle_t;
  +
   #else
   /* Any other OS should go above this one.  This is the lowest common
    * denominator typedefs for  all UNIX-like systems.  :)