shared-cache-sym.c   [plain text]


#include <stdio.h>
#include <unistd.h>
int main()
{
  puts ("ABOUT TO SLEEP");
  sleep (20);
  puts ("DONE");
  return 0;
}