allocrtsig.c 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Ignore/stub out real-time signal allocation.
  3. *
  4. * Copyright (C) 2001 by Lineo, inc.
  5. * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU Library General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or (at your
  10. * option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful, but WITHOUT
  13. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
  15. * for more details.
  16. *
  17. * You should have received a copy of the GNU Library General Public License
  18. * along with this program; if not, write to the Free Software Foundation,
  19. * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. *
  21. */
  22. #include <signal.h>
  23. int __libc_current_sigrtmin (void)
  24. {
  25. return -1;
  26. }
  27. int __libc_current_sigrtmax (void)
  28. {
  29. return -1;
  30. }