c使用mutex同步
摘要:
#include <stdio.h> #include <unistd.h> #include <pthread.h> void increase(); int sum = 0; pthread_mutex_t mutex; int main() { // init mutex pthread_mu 阅读全文
posted @ 2020-02-08 23:04 luckygxf 阅读(704) 评论(0) 推荐(0) 编辑