pike.git
/
src
/
mapping.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/mapping.h:39:
struct keypair *hash[1 /* hashsize */ ]; /* struct keypair data_block[ hashsize * AVG_LINK_LENGTH ] */ }; #undef MAPPING_SIZE_DEBUG /* This debug doesn't work with weak mappings in the gc. */ struct mapping { INT32 refs;
+
INT32 ___fill_to_marker; /* Fill 32 bit to marker (32 bit systems do
+
* not pad as required). */
struct marker m; #ifdef MAPPING_SIZE_DEBUG INT32 debug_size; #endif struct mapping_data *data; struct mapping *next, *prev; }; extern struct mapping *first_mapping;