1. 首页
  2. 操作系统
  3. OS
  4. thread sanitizer.md

thread sanitizer.md

上传者: 2020-12-21 13:25:24上传 MD文件 1.5KB 热度 7次
# 利用Thread Sanitizer工具检查数据竞争的问题 ## 例子 #include int Global; void *Thread1(void *x) { Global = 42; return x; } int main(void) { pthread_t t; pthread_create(&t, NULL, Thread1, NULL); Global = 43; pthread_join(t, NULL); return Global; }
用户评论