1 Star 4 Fork 7

SSZL博客 / iot_http_websoket_server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CMutex.hpp 580 Bytes
AI 代码解读
一键复制 编辑 原始数据 按行查看 历史
SSZL 提交于 2018-10-09 16:07 . 线程锁
/*************************************************************************
# > File Name: CMutex.h
# > Author: SSZL
# > Mail: sszllzss@foxmail.com
# > Blog: sszlbg.cn
# > Created Time: 2018-10-03 15:04:33
# > Revise Time: 2018-10-03 15:06:26
************************************************************************/
#ifndef _CMUTEX_H
#define _CMUTEX_H
#include <pthread.h>
#include <iostream>
#include <stdint.h>
class CMutex
{
public:
CMutex();
~CMutex();
int32_t lock();
int32_t unlock();
int32_t trylock();
private:
pthread_mutex_t _mutex;
};
#endif
C++
1
https://gitee.com/sszl_blog/iot_http_websoket_server.git
git@gitee.com:sszl_blog/iot_http_websoket_server.git
sszl_blog
iot_http_websoket_server
iot_http_websoket_server
master

搜索帮助