Diff for /libaitio/src/aitio.c between versions 1.10.6.1 and 1.10.6.2

version 1.10.6.1, 2012/05/23 11:49:35 version 1.10.6.2, 2012/05/23 11:59:51
Line 51  int io_Debug; Line 51  int io_Debug;
   
 #pragma GCC visibility push(hidden)  #pragma GCC visibility push(hidden)
   
   int io_mpool;
   
 int io_Errno;  int io_Errno;
 char io_Error[STRSIZ];  char io_Error[STRSIZ];
   
Line 82  io_SetErr(int eno, char *estr, ...) Line 84  io_SetErr(int eno, char *estr, ...)
         va_start(lst, estr);          va_start(lst, estr);
         vsnprintf(io_Error, STRSIZ, estr, lst);          vsnprintf(io_Error, STRSIZ, estr, lst);
         va_end(lst);          va_end(lst);
   }
   
   // mpool_inuse() Check for mpool usage
   inline int
   mpool_inuse()
   {
           return io_mpool;
 }  }
   
   

Removed from v.1.10.6.1  
changed lines
  Added in v.1.10.6.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>