This commit is contained in:
2026-06-09 06:43:13 +02:00
parent 43902c20e4
commit 2f42b036a9
33 changed files with 2077 additions and 40 deletions

View File

@@ -41,6 +41,7 @@ void *wokerT3(void *vargp)
int main()
{
pthread_t t1,t2,t3;
srand(time(NULL));
pthread_create(&t1, NULL, wokerT1, NULL);
pthread_create(&t2, NULL, wokerT2, NULL);
pthread_create(&t3, NULL, wokerT3, NULL);