attr.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * attr.c
  3. *
  4. * Description:
  5. * This translation unit agregates operations on thread attribute objects.
  6. * It is used for inline optimisation.
  7. *
  8. * The included modules are used separately when static executable sizes
  9. * must be minimised.
  10. *
  11. * --------------------------------------------------------------------------
  12. *
  13. * Pthreads-win32 - POSIX Threads Library for Win32
  14. * Copyright(C) 1998 John E. Bossom
  15. * Copyright(C) 1999,2005 Pthreads-win32 contributors
  16. *
  17. * Contact Email: [email protected]
  18. *
  19. * The current list of contributors is contained
  20. * in the file CONTRIBUTORS included with the source
  21. * code distribution. The list can also be seen at the
  22. * following World Wide Web location:
  23. * http://sources.redhat.com/pthreads-win32/contributors.html
  24. *
  25. * This library is free software; you can redistribute it and/or
  26. * modify it under the terms of the GNU Lesser General Public
  27. * License as published by the Free Software Foundation; either
  28. * version 2 of the License, or (at your option) any later version.
  29. *
  30. * This library is distributed in the hope that it will be useful,
  31. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  32. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  33. * Lesser General Public License for more details.
  34. *
  35. * You should have received a copy of the GNU Lesser General Public
  36. * License along with this library in the file COPYING.LIB;
  37. * if not, write to the Free Software Foundation, Inc.,
  38. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  39. */
  40. #include "pthread.h"
  41. #include "implement.h"
  42. #include "pthread_attr_init.c"
  43. #include "pthread_attr_destroy.c"
  44. #include "pthread_attr_getdetachstate.c"
  45. #include "pthread_attr_setdetachstate.c"
  46. #include "pthread_attr_getstackaddr.c"
  47. #include "pthread_attr_setstackaddr.c"
  48. #include "pthread_attr_getstacksize.c"
  49. #include "pthread_attr_setstacksize.c"
  50. #include "pthread_attr_getscope.c"
  51. #include "pthread_attr_setscope.c"