signal.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * signal testing function for uClibc
  4. *
  5. * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
  6. * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
  7. * Written by Erik Andersen <andersen@uclibc.org>
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU Library General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or (at your
  12. * option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful, but WITHOUT
  15. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  16. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
  17. * for more details.
  18. *
  19. * You should have received a copy of the GNU Library General Public License
  20. * along with this program; if not, write to the Free Software Foundation,
  21. * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. *
  23. */
  24. #include <errno.h>
  25. #include <stdio.h>
  26. #include <stdlib.h>
  27. #include <string.h>
  28. #include <strings.h>
  29. #include <fcntl.h>
  30. #include <signal.h>
  31. /* -------------------------------------------------*/
  32. /* This stuff is common to all the testing routines */
  33. /* -------------------------------------------------*/
  34. const char *it = "<UNSET>"; /* Routine name for message routines. */
  35. size_t errors = 0;
  36. void check(int thing, int number)
  37. {
  38. if (!thing) {
  39. printf("%s: flunked test %d\n", it, number);
  40. ++errors;
  41. }
  42. }
  43. void equal(const char *a, const char *b, int number)
  44. {
  45. check(a != NULL && b != NULL && (strcmp(a, b) == 0), number);
  46. }
  47. /* -------------------------------------------------*/
  48. /* Let the tests begin.... */
  49. /* -------------------------------------------------*/
  50. int global_int = 0;
  51. void set_global_int_to_one(int signum)
  52. {
  53. printf ("Received signal %d (%s).\n", signum, strsignal(signum));
  54. global_int = 1;
  55. return;
  56. }
  57. void signal_test_1(void)
  58. {
  59. global_int = 0;
  60. it = "global variable set from signal handler";
  61. if (signal(SIGUSR1, set_global_int_to_one) == SIG_ERR) {
  62. perror("signal(SIGUSR1) failed");
  63. exit(-1);
  64. }
  65. raise(SIGUSR1);
  66. /* This should already have jumped to the signal handler */
  67. check((global_int == 1), 1);
  68. global_int = 0;
  69. if (signal(SIGUSR1, SIG_IGN) == SIG_ERR) {
  70. perror("signal(SIGUSR1) failed");
  71. exit(-1);
  72. }
  73. raise(SIGUSR1);
  74. /* This should not go to the signal handler this time since we */
  75. check((global_int == 0), 1);
  76. }
  77. int main(void)
  78. {
  79. int status;
  80. signal_test_1();
  81. if (errors == 0) {
  82. status = EXIT_SUCCESS;
  83. printf("No errors.\n");
  84. } else {
  85. status = EXIT_FAILURE;
  86. printf("%lu errors.\n", (unsigned long)errors);
  87. }
  88. exit(status);
  89. }