mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-23 13:52:28 +00:00
Fix naming for redbean shared memory atomics
This commit is contained in:
parent
a5b483f2d4
commit
60b68d7152
4 changed files with 18 additions and 12 deletions
8
third_party/lua/lunix.c
vendored
8
third_party/lua/lunix.c
vendored
|
@ -2882,10 +2882,10 @@ static const luaL_Reg kLuaUnixMemoryMeth[] = {
|
|||
{"store", LuaUnixMemoryStore}, //
|
||||
{"xchg", LuaUnixMemoryXchg}, //
|
||||
{"cmpxchg", LuaUnixMemoryCmpxchg}, //
|
||||
{"add", LuaUnixMemoryAdd}, //
|
||||
{"and", LuaUnixMemoryAnd}, //
|
||||
{"or", LuaUnixMemoryOr}, //
|
||||
{"xor", LuaUnixMemoryXor}, //
|
||||
{"fetch_add", LuaUnixMemoryAdd}, //
|
||||
{"fetch_and", LuaUnixMemoryAnd}, //
|
||||
{"fetch_or", LuaUnixMemoryOr}, //
|
||||
{"fetch_xor", LuaUnixMemoryXor}, //
|
||||
{"wait", LuaUnixMemoryWait}, //
|
||||
{"wake", LuaUnixMemoryWake}, //
|
||||
{0}, //
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue