comparison runtime/object.h @ 89:5a195ee08eac

Fix memory leak and bug that was preventing First@Dictionary from working properly
author Mike Pavone <pavone@retrodev.com>
date Sat, 31 Jul 2010 00:19:15 -0400
parents 3c4325e6298f
children 43cc42df26cc
comparison
equal deleted inserted replaced
88:f69987c58fa8 89:5a195ee08eac
83 returntype coerce_value(uint32_t type, calldata * params); 83 returntype coerce_value(uint32_t type, calldata * params);
84 blueprint * get_blueprint_byid(uint32_t type); 84 blueprint * get_blueprint_byid(uint32_t type);
85 85
86 extern blueprint ** registered_types; 86 extern blueprint ** registered_types;
87 extern uint32_t max_registered_type; 87 extern uint32_t max_registered_type;
88 #include "fixed_alloc.h"
89 extern mem_manager * manager;
88 90
89 #define INITIAL_TYPE_STORAGE 32 91 #define INITIAL_TYPE_STORAGE 32
90 #define INITIAL_METHOD_LOOKUP 8 92 #define INITIAL_METHOD_LOOKUP 8
91 #define BELOW_INITIAL_METHOD 3 93 #define BELOW_INITIAL_METHOD 3
92 94