Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

main-race.c 321B

123456789101112131415161718
  1. #include <stdio.h>
  2. #include "mythreads.h"
  3. int balance = 0;
  4. void* worker(void* arg) {
  5. balance++; // unprotected access
  6. return NULL;
  7. }
  8. int main(int argc, char *argv[]) {
  9. pthread_t p;
  10. Pthread_create(&p, NULL, worker, NULL);
  11. balance++; // unprotected access
  12. Pthread_join(p, NULL);
  13. return 0;
  14. }