pthread_self.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*
  2. * pthread_self.c
  3. *
  4. * Description:
  5. * This translation unit implements miscellaneous thread functions.
  6. *
  7. * --------------------------------------------------------------------------
  8. *
  9. * Pthreads-embedded (PTE) - POSIX Threads Library for embedded systems
  10. * Copyright(C) 2008 Jason Schmidlapp
  11. *
  12. * Contact Email: jschmidlapp@users.sourceforge.net
  13. *
  14. *
  15. * Based upon Pthreads-win32 - POSIX Threads Library for Win32
  16. * Copyright(C) 1998 John E. Bossom
  17. * Copyright(C) 1999,2005 Pthreads-win32 contributors
  18. *
  19. * Contact Email: rpj@callisto.canberra.edu.au
  20. *
  21. * The original list of contributors to the Pthreads-win32 project
  22. * is contained in the file CONTRIBUTORS.ptw32 included with the
  23. * source code distribution. The list can also be seen at the
  24. * following World Wide Web location:
  25. * http://sources.redhat.com/pthreads-win32/contributors.html
  26. *
  27. * This library is free software; you can redistribute it and/or
  28. * modify it under the terms of the GNU Lesser General Public
  29. * License as published by the Free Software Foundation; either
  30. * version 2 of the License, or (at your option) any later version.
  31. *
  32. * This library is distributed in the hope that it will be useful,
  33. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  34. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  35. * Lesser General Public License for more details.
  36. *
  37. * You should have received a copy of the GNU Lesser General Public
  38. * License along with this library in the file COPYING.LIB;
  39. * if not, write to the Free Software Foundation, Inc.,
  40. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  41. */
  42. #include <stdio.h>
  43. #include <stdlib.h>
  44. #include "pthread.h"
  45. #include "implement.h"
  46. pthread_t
  47. pthread_self (void)
  48. /*
  49. * ------------------------------------------------------
  50. * DOCPUBLIC
  51. * This function returns a reference to the current running
  52. * thread.
  53. *
  54. * PARAMETERS
  55. * N/A
  56. *
  57. *
  58. * DESCRIPTION
  59. * This function returns a reference to the current running
  60. * thread.
  61. *
  62. * RESULTS
  63. * pthread_t reference to the current thread
  64. *
  65. * ------------------------------------------------------
  66. */
  67. {
  68. pthread_t self;
  69. pte_thread_t * sp;
  70. sp = (pte_thread_t *) pthread_getspecific (pte_selfThreadKey);
  71. if (sp != NULL)
  72. {
  73. self = sp->ptHandle;
  74. }
  75. else
  76. {
  77. /*
  78. * Need to create an implicit 'self' for the currently
  79. * executing thread.
  80. *
  81. * Note that this is a potential memory leak as there is
  82. * no way to free the memory and any resources allocated
  83. * by pte_new!
  84. */
  85. self = pte_new ();
  86. sp = (pte_thread_t *) self;
  87. if (sp != NULL)
  88. {
  89. /*
  90. * This is a non-POSIX thread which has chosen to call
  91. * a POSIX threads function for some reason. We assume that
  92. * it isn't joinable, but we do assume that it's
  93. * (deferred) cancelable.
  94. */
  95. sp->implicit = 1;
  96. sp->detachState = PTHREAD_CREATE_DETACHED;
  97. sp->threadId = pte_osThreadGetHandle();
  98. /*
  99. * No need to explicitly serialise access to sched_priority
  100. * because the new handle is not yet public.
  101. */
  102. sp->sched_priority = 0;
  103. pthread_setspecific (pte_selfThreadKey, (void *) sp);
  104. }
  105. }
  106. return (self);
  107. } /* pthread_self */