diff options
author | Benoit Germain <bnt period germain arrobase gmail period com> | 2014-03-19 10:53:08 +0100 |
---|---|---|
committer | Benoit Germain <bnt period germain arrobase gmail period com> | 2014-03-19 10:53:08 +0100 |
commit | 43343cc59b54ebf216bc3519abcf4cd3e1f0243f (patch) | |
tree | 8dcef54c74fe8ff6a93a00c9ec2c81a40444a26d /src/tools.h | |
parent | 0ffafefaf5ef410fa0da95ac1860e817428531ed (diff) | |
download | lanes-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.h | 2 |
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); | |||
187 | int luaG_new_require( lua_State* L); | 187 | int luaG_new_require( lua_State* L); |
188 | 188 | ||
189 | void populate_func_lookup_table( lua_State* L, int _i, char const* _name); | 189 | void populate_func_lookup_table( lua_State* L, int _i, char const* _name); |
190 | void serialize_require( lua_State *L); | 190 | void serialize_require( struct s_Universe* U, lua_State *L); |
191 | void initialize_on_state_create( struct s_Universe* U, lua_State* L); | 191 | void initialize_on_state_create( struct s_Universe* U, lua_State* L); |
192 | void call_on_state_create( struct s_Universe* U, lua_State* L, lua_State* from_, enum eLookupMode mode_); | 192 | void call_on_state_create( struct s_Universe* U, lua_State* L, lua_State* from_, enum eLookupMode mode_); |
193 | 193 | ||