home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c072 / 1.ddi / PRG9_1.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-19  |  1.4 KB  |  57 lines

  1. /*Program 9_1 - Control Break Handler
  2.    by Stephen R. Davis, 1987
  3.  
  4.   Use the Turbo C provided ctrlbrk() routine to establish
  5.   our own control break handler.  We will put ourselves into
  6.   an infinite loop.  Entering control break will enter us into
  7.   infinite loop.  One more time and we exit.  This is an
  8.   example of the longjmp as well as the installation of multiple
  9.   Control-Break handlers.
  10. */
  11.  
  12. #include <stdio.h>
  13. #include <dos.h>
  14. #include <setjmp.h>
  15.  
  16. /*prototype definitions*/
  17. int break1 (void);
  18. int break2 (void);
  19.  
  20. /*global data definitions*/
  21. jmp_buf save;
  22.  
  23. /*Break1 - intercept the first control break*/
  24. int break1 (void)
  25. {
  26.      printf ("First break entered!\n");
  27.      longjmp (save, 1);
  28. }
  29.  
  30. /*Break2 - intercept the second control break*/
  31. int break2 (void)
  32. {
  33.      printf ("Second break entered!\n");
  34.      longjmp (save, 2);
  35. }
  36.  
  37. /*Main - main program to exercise the break handler*/
  38. main ()
  39. {
  40.      int value;
  41.  
  42.      value = setjmp (save);
  43.      switch (value) {
  44.           case 0:
  45.                   ctrlbrk (break1);
  46.                   printf ("Entering first loop\n");
  47.                   for (;;)
  48.                        printf ("  Infinite loop #1\n");
  49.           case 1:
  50.                   ctrlbrk (break2);
  51.                   printf ("Entering second loop\n");
  52.                   for (;;)
  53.                        printf ("    Infinite loop #2\n");
  54.           default:
  55.                   printf ("That's all folks\n");
  56.      }
  57. }