Skip to content

Commit d7e4e43

Browse files
committed
use spinlock macro
1 parent 878110f commit d7e4e43

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

3rd/lua/lauxlib.c

+10-11
Original file line numberDiff line numberDiff line change
@@ -972,43 +972,42 @@ LUALIB_API void luaL_checkversion_ (lua_State *L, lua_Number ver, size_t sz) {
972972

973973
// use clonefunction
974974

975-
#define LOCK(q) while (__sync_lock_test_and_set(&(q)->lock,1)) {}
976-
#define UNLOCK(q) __sync_lock_release(&(q)->lock);
975+
#include "spinlock.h"
977976

978977
struct codecache {
979-
int lock;
978+
struct spinlock lock;
980979
lua_State *L;
981980
};
982981

983-
static struct codecache CC = { 0 , NULL };
982+
static struct codecache CC;
984983

985984
static void
986985
clearcache() {
987986
if (CC.L == NULL)
988987
return;
989-
LOCK(&CC)
988+
SPIN_LOCK(&CC)
990989
lua_close(CC.L);
991990
CC.L = luaL_newstate();
992-
UNLOCK(&CC)
991+
SPIN_UNLOCK(&CC)
993992
}
994993

995994
static void
996995
init() {
997-
CC.lock = 0;
996+
SPIN_INIT(&CC);
998997
CC.L = luaL_newstate();
999998
}
1000999

10011000
static const void *
10021001
load(const char *key) {
10031002
if (CC.L == NULL)
10041003
return NULL;
1005-
LOCK(&CC)
1004+
SPIN_LOCK(&CC)
10061005
lua_State *L = CC.L;
10071006
lua_pushstring(L, key);
10081007
lua_rawget(L, LUA_REGISTRYINDEX);
10091008
const void * result = lua_touserdata(L, -1);
10101009
lua_pop(L, 1);
1011-
UNLOCK(&CC)
1010+
SPIN_UNLOCK(&CC)
10121011

10131012
return result;
10141013
}
@@ -1018,7 +1017,7 @@ save(const char *key, const void * proto) {
10181017
lua_State *L;
10191018
const void * result = NULL;
10201019

1021-
LOCK(&CC)
1020+
SPIN_LOCK(&CC)
10221021
if (CC.L == NULL) {
10231022
init();
10241023
L = CC.L;
@@ -1036,7 +1035,7 @@ save(const char *key, const void * proto) {
10361035
lua_pop(L,2);
10371036
}
10381037
}
1039-
UNLOCK(&CC)
1038+
SPIN_UNLOCK(&CC)
10401039
return result;
10411040
}
10421041

skynet-src/spinlock.h

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ spinlock_unlock(struct spinlock *lock) {
3434

3535
static inline void
3636
spinlock_destroy(struct spinlock *lock) {
37+
(void) lock;
3738
}
3839

3940
#else

0 commit comments

Comments
 (0)