WeaselGames / godot_luaAPI

Godot LuaAPI
https://luaapi.weaselgames.info
Other
347 stars 27 forks source link

Feature Request: Implement `threading` library. #216

Open RadiantUwU opened 3 weeks ago

RadiantUwU commented 3 weeks ago

Is your feature request related to a problem? Please describe. Sometimes, one thread isn't enough, and you'd require more than one thread inside Lua. There is a huge limitation around how Lua's states are not thread-safe.

Describe the solution you'd like A clear and concise description of what you want to happen. I would like a threading library that allows the following:

Additional context Add any other context or screenshots about the feature request here. I can open a pull request for this feature request if need be.

KevBruner commented 4 days ago

Lua is not thread safe, and cannot be made thread safe in a reasonable way. Suggest closing this request.

RadiantUwU commented 4 days ago

Lua is not thread safe, and cannot be made thread safe in a reasonable way. Suggest closing this request.

Did you not read my... feature request...?