Diff for /libelwix/inc/elwix/avar.h between versions 1.4.2.1 and 1.6

version 1.4.2.1, 2013/08/20 22:19:28 version 1.6, 2013/08/22 15:21:25
Line 292  typedef struct { Line 292  typedef struct {
                                                 __val->val_type = f64; __val->val.f64 = _n; \                                                  __val->val_type = f64; __val->val.f64 = _n; \
                                                 AIT_LEN(__val) = sizeof(double); } while (0)                                                  AIT_LEN(__val) = sizeof(double); } while (0)
   
#define AIT_COPY_VAL(_vl, _v)           do { assert((_vl) && (_v) && !AIT_CONST(__val)); \#define AIT_COPY_VAL(_vl, _v)           do { assert((_vl) && (_v) && !AIT_CONST((_vl))); \
                                                 memcpy((_vl), (_v), sizeof(ait_val_t)); \                                                  memcpy((_vl), (_v), sizeof(ait_val_t)); \
                                                 switch (AIT_TYPE((_vl))) { \                                                  switch (AIT_TYPE((_vl))) { \
                                                         case buffer: \                                                          case buffer: \
Line 504  void ait_freeVars(array_t ** __restrict vars); Line 504  void ait_freeVars(array_t ** __restrict vars);
  * return: NULL error or !=NULL ait_val_t element   * return: NULL error or !=NULL ait_val_t element
  */   */
 ait_val_t *ait_getVars(array_t ** __restrict vars, int n);  ait_val_t *ait_getVars(array_t ** __restrict vars, int n);
   /*
    * ait_resideVars() - Calculate footprint of resided variables into array
    *
    * @vars = Variable array
    * return: bytes for whole array
    */
   size_t ait_resideVars(array_t * __restrict vars);
 /*  /*
  * ait_sortVarsByKey() - Sorting array with variables by key   * ait_sortVarsByKey() - Sorting array with variables by key
  *   *

Removed from v.1.4.2.1  
changed lines
  Added in v.1.6


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