skynet源码学习(一) linux无锁化编程
2021-01-13 22:12
标签:ash lease stand text skynet 源码 lock cloc value struct groupnode { struct group { struct group G = NULL; inline static void inline static void gcc从4.1.2开始提供了sync系列的build-in函数,用于提供加减和逻辑运算的原子操作 skynet源码学习(一) linux无锁化编程 标签:ash lease stand text skynet 源码 lock cloc value 原文地址:https://blog.51cto.com/14902036/2518954
int handle;
struct skynetcontext ctx;
struct groupnode next;
};
int lock;
struct groupnode node[HASHSIZE];
};
lock(struct group g) {
while (synclocktestandset(&g->lock,1)) {}
}
unlock(struct group g) {
synclockrelease(&g->lock);
}*
type synclocktestandset (type ptr, type value, …):将ptr设为value并返回ptr操作之前的值。
void synclockrelease (type ptr, …):将ptr置0。
type只能是int, long, long long以及对应的unsigned类型
上一篇:.net core 发送邮件
下一篇:Web前端学多久能参加工作呢?
文章标题:skynet源码学习(一) linux无锁化编程
文章链接:http://soscw.com/index.php/essay/41491.html