mirror of
https://github.com/love2d/love.git
synced 2026-08-15 15:51:12 +02:00
Fix race conditions and deadlocks in Channels (hopefully) (issue #554)
Also, this is a giant commit because of the official Code Style (tm) was applied. --HG-- branch : minor
This commit is contained in:
@@ -28,11 +28,11 @@ namespace love
|
||||
{
|
||||
namespace thread
|
||||
{
|
||||
int w_newThread(lua_State *L);
|
||||
int w_newChannel(lua_State *L);
|
||||
int w_getChannel(lua_State *L);
|
||||
int w_newThread(lua_State *L);
|
||||
int w_newChannel(lua_State *L);
|
||||
int w_getChannel(lua_State *L);
|
||||
|
||||
extern "C" LOVE_EXPORT int luaopen_love_thread(lua_State * L);
|
||||
extern "C" LOVE_EXPORT int luaopen_love_thread(lua_State * L);
|
||||
|
||||
} // thread
|
||||
} // love
|
||||
|
||||
Reference in New Issue
Block a user