Diff for /libaitcfg/inc/aitcfg.h between versions 1.12 and 1.14

version 1.12, 2014/01/29 23:48:34 version 1.14, 2014/03/03 09:41:09
Line 56  struct tagCfg { Line 56  struct tagCfg {
         ait_val_t               cfg_attr;          ait_val_t               cfg_attr;
         ait_val_t               cfg_val;          ait_val_t               cfg_val;
   
        SLIST_ENTRY(tagCfg)  cfg_next;        TAILQ_ENTRY(tagCfg)  cfg_next;
         RB_ENTRY(tagCfg)        cfg_node;          RB_ENTRY(tagCfg)        cfg_node;
 };  };
 typedef struct tagRC {  typedef struct tagRC {
         pthread_mutex_t         rc_mtx;          pthread_mutex_t         rc_mtx;
   
        struct tagCfg           *slh_first;        struct tagCfg           *tqh_first;
         struct tagCfg           **tqh_last;
         struct tagCfg           *rbh_root;          struct tagCfg           *rbh_root;
 } cfg_root_t;  } cfg_root_t;
 #define CFG_RC_LOCK(x)          pthread_mutex_lock(&(x)->rc_mtx)  #define CFG_RC_LOCK(x)          pthread_mutex_lock(&(x)->rc_mtx)
Line 84  const char *cfg_GetError(); Line 85  const char *cfg_GetError();
 /*  /*
  * cfgInitConfig() - Init config root   * cfgInitConfig() - Init config root
  *   *
 * @cfg = Config root * return: NULL error or !=NULL allocated config root
 * return: -1 error or 0 ok 
  */   */
int cfgInitConfig(cfg_root_t * __restrict cfg);cfg_root_t *cfgInitConfig();
 /*
  * cfgEndConfig() - Free resources & config root
  *
  * @pcfg = Config root
  * return: none
  */
 void cfgEndConfig(cfg_root_t **pcfg);
 /*  /*
  * cfgLoadConfig() - Load config from file   * cfgLoadConfig() - Load config from file
  *   *

Removed from v.1.12  
changed lines
  Added in v.1.14


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