pt-machine.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* Cloned for uClibc by Paul Mundt, December 2003 */
  2. /* Modified by SuperH, Inc. September 2003 */
  3. /* Machine-dependent pthreads configuration and inline functions.
  4. SuperH version.
  5. Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
  6. This file is part of the GNU C Library.
  7. Contributed by Niibe Yutaka <gniibe@m17n.org>.
  8. The GNU C Library is free software; you can redistribute it and/or
  9. modify it under the terms of the GNU Library General Public License as
  10. published by the Free Software Foundation; either version 2 of the
  11. License, or (at your option) any later version.
  12. The GNU C Library is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. Library General Public License for more details.
  16. You should have received a copy of the GNU Library General Public
  17. License along with the GNU C Library; see the file COPYING.LIB. If not,
  18. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. Boston, MA 02111-1307, USA. */
  20. #ifndef _PT_MACHINE_H
  21. #define _PT_MACHINE_H 1
  22. #include <features.h>
  23. #ifndef PT_EI
  24. # if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
  25. # define PT_EI static inline __attribute__((always_inline))
  26. # else
  27. # define PT_EI extern inline __attribute__((always_inline))
  28. # endif
  29. #endif
  30. /* Get some notion of the current stack. Need not be exactly the top
  31. of the stack, just something somewhere in the current frame. */
  32. #define CURRENT_STACK_FRAME stack_pointer
  33. register char * stack_pointer __asm__ ("r15");
  34. #endif /* pt-machine.h */