You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
427 B
C

#include <unistd.h>
// the rest is up to you! Implement a program which starts _two_ pthreads.
// One reads input from the user, and adds numbers to a total.
// the other prints the current total value every 3 seconds.
// After 30 seconds, the main thread sets a bool to false that signals
// to both threads that they should join, just like in 3.c.
// You can use sleep(int seconds) from unistd.h to make your threads sleep.