Diff for /libaitcfg/inc/aitcfg.h between versions 1.14.2.2 and 1.14.2.3

version 1.14.2.2, 2014/03/19 17:00:51 version 1.14.2.3, 2014/03/19 17:09:10
Line 69  typedef struct tagRC { Line 69  typedef struct tagRC {
 #define CFG_RC_LOCK(x)          pthread_mutex_lock(&(x)->rc_mtx)  #define CFG_RC_LOCK(x)          pthread_mutex_lock(&(x)->rc_mtx)
 #define CFG_RC_UNLOCK(x)        pthread_mutex_unlock(&(x)->rc_mtx)  #define CFG_RC_UNLOCK(x)        pthread_mutex_unlock(&(x)->rc_mtx)
   
   #define CFG_SECTION(x)          (assert((x)), AIT_GET_STR(&(x)->cfg_sec))
   #define CFG_ATTRIBUTE(x)        (assert((x)), AIT_GET_STR(&(x)->cfg_attr))
   #define CFG_VALUE(x)            (assert((x)), AIT_GET_STR(&(x)->cfg_val))
   
   
 // cfg_GetErrno() Get error code of last operation  // cfg_GetErrno() Get error code of last operation
 int cfg_GetErrno();  int cfg_GetErrno();

Removed from v.1.14.2.2  
changed lines
  Added in v.1.14.2.3


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