Adjust node struct field ordering (for memory alignment)

This commit is contained in:
c9s 2014-05-18 20:32:23 +08:00
parent bada37fd75
commit 33c0c3fea7

View file

@ -29,30 +29,28 @@ typedef struct _route route;
struct _node {
edge ** edges;
route ** routes;
int edge_len;
int edge_cap;
route ** routes;
int route_len;
int route_cap;
int endpoint;
/** compile-time variables here.... **/
/* the combined regexp pattern string from pattern_tokens */
char * combined_pattern;
int combined_pattern_len;
pcre * pcre_pattern;
pcre_extra * pcre_extra;
int ov_cnt;
int * ov;
pcre * pcre_pattern;
pcre_extra * pcre_extra;
/**
* the pointer of route data
*/
void * data;
int endpoint;
};
struct _edge {