<syntaxhighlight lang="C" name="banker_algorithm">


  1. include <unistd.h>
  2. include <stdio.h>
  3. include <sys/types.h>
  4. include <signal.h>
  5. include <sys/wait.h>

int main() { unsigned i, l = 0, j; int status; char name[100]; pid_t pid; pid = fork();//child starts if(pid == 0)//pid = 0 for child only { fgets(name, 100, stdin); printf("Thank you\n"); kill(getppid(), 9);//kills the parent return;// child finishes here } for(i = 0; i < 500000; i++) for(j = 0; j < 10000; j++) l++; // l is used so that compiler just won't remove the loop for optimization if(waitpid(pid, &status, WNOHANG) == 0)//Child still running { kill(pid, 9);// kills the child

if(! printf("Failed\n")) printf("l = %u",l);// for ensuring the code remains after optimization }

}


</syntaxhighlight>




blog comments powered by Disqus

<syntaxhighlight lang="C" name="banker_algorithm">


  1. include <unistd.h>
  2. include <stdio.h>
  3. include <sys/types.h>
  4. include <signal.h>
  5. include <sys/wait.h>

int main() { unsigned i, l = 0, j; int status; char name[100]; pid_t pid; pid = fork();//child starts if(pid == 0)//pid = 0 for child only { fgets(name, 100, stdin); printf("Thank you\n"); kill(getppid(), 9);//kills the parent return;// child finishes here } for(i = 0; i < 500000; i++) for(j = 0; j < 10000; j++) l++; // l is used so that compiler just won't remove the loop for optimization if(waitpid(pid, &status, WNOHANG) == 0)//Child still running { kill(pid, 9);// kills the child

if(! printf("Failed\n")) printf("l = %u",l);// for ensuring the code remains after optimization }

}


</syntaxhighlight>




blog comments powered by Disqus