您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. thread-sanitizer.md

  2. # 利用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); retu
  3. 所属分类:OS

    • 发布日期:2020-12-18
    • 文件大小:2kb
    • 提供者:ppcust