@@ -0,0 +1,14 @@
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <stdio.h>
int main(int argc, char *argv[]) {
pid_t res;
int status;
while (1) {
res = wait(&status);
sleep(60);
}
return(0);
The note is not visible to the blocked user.