psignal.c 922 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Copyright (C) 2002 Manuel Novoa III
  3. * Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
  4. *
  5. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. */
  7. #include <features.h>
  8. #include <stdio.h>
  9. #include <string.h>
  10. #include <signal.h>
  11. libc_hidden_proto(fprintf)
  12. libc_hidden_proto(strsignal)
  13. libc_hidden_proto(stderr)
  14. /* TODO: make this threadsafe with a reentrant version of strsignal? */
  15. void psignal(int signum, register const char *message)
  16. {
  17. /* If the program is calling psignal, it's a safe bet that printf and
  18. * friends are used as well. It is also possible that the calling
  19. * program could buffer stderr, or reassign it. */
  20. register const char *sep;
  21. sep = ": ";
  22. if (!(message && *message)) { /* Caller did not supply a prefix message */
  23. message = (sep += 2); /* or passed an empty string. */
  24. }
  25. fprintf(stderr, "%s%s%s\n", message, sep, strsignal(signum));
  26. }