aboutsummaryrefslogtreecommitdiff
path: root/src/tools.h
diff options
context:
space:
mode:
authorBenoit Germain <bnt period germain arrobase gmail period com>2014-03-19 10:53:08 +0100
committerBenoit Germain <bnt period germain arrobase gmail period com>2014-03-19 10:53:08 +0100
commit43343cc59b54ebf216bc3519abcf4cd3e1f0243f (patch)
tree8dcef54c74fe8ff6a93a00c9ec2c81a40444a26d /src/tools.h
parent0ffafefaf5ef410fa0da95ac1860e817428531ed (diff)
downloadlanes-43343cc59b54ebf216bc3519abcf4cd3e1f0243f.tar.gz
lanes-43343cc59b54ebf216bc3519abcf4cd3e1f0243f.tar.bz2
lanes-43343cc59b54ebf216bc3519abcf4cd3e1f0243f.zip
Don't mutex-wrap require() more than once
Diffstat (limited to 'src/tools.h')
-rw-r--r--src/tools.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools.h b/src/tools.h
index 3152646..708421c 100644
--- a/src/tools.h
+++ b/src/tools.h
@@ -187,7 +187,7 @@ int luaG_nameof( lua_State* L);
187int luaG_new_require( lua_State* L); 187int luaG_new_require( lua_State* L);
188 188
189void populate_func_lookup_table( lua_State* L, int _i, char const* _name); 189void populate_func_lookup_table( lua_State* L, int _i, char const* _name);
190void serialize_require( lua_State *L); 190void serialize_require( struct s_Universe* U, lua_State *L);
191void initialize_on_state_create( struct s_Universe* U, lua_State* L); 191void initialize_on_state_create( struct s_Universe* U, lua_State* L);
192void call_on_state_create( struct s_Universe* U, lua_State* L, lua_State* from_, enum eLookupMode mode_); 192void call_on_state_create( struct s_Universe* U, lua_State* L, lua_State* from_, enum eLookupMode mode_);
193 193