signal.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. #ifndef _GNU_SOURCE
  25. # define _GNU_SOURCE
  26. #endif
  27. #include <errno.h>
  28. #include <stdio.h>
  29. #include <stdlib.h>
  30. #include <string.h>
  31. #include <strings.h>
  32. #include <fcntl.h>
  33. #include <signal.h>
  34. /* -------------------------------------------------*/
  35. /* This stuff is common to all the testing routines */
  36. /* -------------------------------------------------*/
  37. const char *it = "<UNSET>"; /* Routine name for message routines. */
  38. size_t errors = 0;
  39. void check(int thing, int number)
  40. {
  41. if (!thing) {
  42. printf("%s: flunked test %d\n", it, number);
  43. ++errors;
  44. }
  45. }
  46. void equal(const char *a, const char *b, int number)
  47. {
  48. check(a != NULL && b != NULL && (strcmp(a, b) == 0), number);
  49. }
  50. /* -------------------------------------------------*/
  51. /* Let the tests begin.... */
  52. /* -------------------------------------------------*/
  53. int global_int = 0;
  54. void set_global_int_to_one(int signum)
  55. {
  56. printf ("Received signal %d (%s).\n", signum, strsignal(signum));
  57. global_int = 1;
  58. return;
  59. }
  60. void signal_test_1(void)
  61. {
  62. global_int = 0;
  63. it = "global variable set from signal handler";
  64. if (signal(SIGUSR1, set_global_int_to_one) == SIG_ERR) {
  65. perror("signal(SIGUSR1) failed");
  66. exit(-1);
  67. }
  68. raise(SIGUSR1);
  69. /* This should already have jumped to the signal handler */
  70. check((global_int == 1), 1);
  71. global_int = 0;
  72. if (signal(SIGUSR1, SIG_IGN) == SIG_ERR) {
  73. perror("signal(SIGUSR1) failed");
  74. exit(-1);
  75. }
  76. raise(SIGUSR1);
  77. /* This should not go to the signal handler this time since we */
  78. check((global_int == 0), 1);
  79. }
  80. int main(void)
  81. {
  82. int status;
  83. signal_test_1();
  84. if (errors == 0) {
  85. status = EXIT_SUCCESS;
  86. printf("No errors.\n");
  87. } else {
  88. status = EXIT_FAILURE;
  89. printf("%lu errors.\n", (unsigned long)errors);
  90. }
  91. exit(status);
  92. }