cpu.c 136 B

123456789
  1. /* Eats up CPU time, never does voluntary context switch */
  2. /* Exits on signals as usual */
  3. int main(void)
  4. {
  5. while(1);
  6. return 0;
  7. }