文件名称:程序员考试刷题-final-prep:期末考试准备
文件大小:3KB
文件格式:ZIP
更新时间:2024-07-27 06:28:48
系统开源
程序员考试刷题期末考试准备 下面是一些与并发相关的额外练习题,您可以将它们用于备考。 多线程 考虑以下 C 程序 # include < pthread.h > # include < stdio.h > int y = 0 ; void * foo ( void * x0) { int * x = ( int *) x0; printf ( " %d " , y); y = *x; return NULL ; } int main ( void ) { pthread_t tid1, tid2; int x1 = 1 ; int x2 = 2 ; pthread_create (&tid1, NULL , &foo, &x1); pthread_create (&tid2, NULL , &foo, &x2); pthread_join (tid1, NULL ); pthread_join (tid2, NULL ); return 0 ; } 该计划的潜在产出是什么? 如果这些线,潜在的输出是什么 pthread_create (&tid1, NULL , &foo, &x2);
【文件预览】:
final-prep-master
----README.md(4KB)
----solution.md(3KB)