thread.h 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. #ifndef _SYS_THREAD_H_
  2. #define _SYS_THREAD_H_
  3. /*
  4. * Copyright (C) 2001-2006 by egnite Software GmbH. All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. *
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * 3. Neither the name of the copyright holders nor the names of
  16. * contributors may be used to endorse or promote products derived
  17. * from this software without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY EGNITE SOFTWARE GMBH AND CONTRIBUTORS
  20. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  22. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL EGNITE
  23. * SOFTWARE GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  24. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  25. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  26. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  27. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  28. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  29. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30. * SUCH DAMAGE.
  31. *
  32. * For additional information see http://www.ethernut.de/
  33. *
  34. * -
  35. * Portions Copyright (C) 2000 David J. Hudson <dave@humbug.demon.co.uk>
  36. *
  37. * This file is distributed in the hope that it will be useful, but WITHOUT
  38. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  39. * FITNESS FOR A PARTICULAR PURPOSE.
  40. *
  41. * You can redistribute this file and/or modify it under the terms of the GNU
  42. * General Public License (GPL) as published by the Free Software Foundation;
  43. * either version 2 of the License, or (at your discretion) any later version.
  44. * See the accompanying file "copying-gpl.txt" for more details.
  45. *
  46. * As a special exception to the GPL, permission is granted for additional
  47. * uses of the text contained in this file. See the accompanying file
  48. * "copying-liquorice.txt" for details.
  49. */
  50. /*!
  51. * \file sys/thread.h
  52. * \brief Thread management definitions.
  53. *
  54. * \verbatim
  55. *
  56. * $Log: thread.h,v $
  57. * Revision 1.15 2006/09/29 12:24:14 haraldkipp
  58. * Stack allocation code moved from thread module to heap module.
  59. * All code should use dedicated stack allocation routines. For targets
  60. * allocating stack from the normal heap the API calls are remapped by
  61. * preprocessor macros.
  62. *
  63. * Revision 1.14 2006/06/29 03:52:19 hwmaier
  64. * Added include statement for cfg/memory.h so the macro
  65. * NUTMEM_STACKHEAP is found when compiling for the
  66. * AT90CAN128.
  67. *
  68. * Revision 1.13 2006/06/28 14:35:31 haraldkipp
  69. * Event/thread/timer re-design.
  70. * Code indention corrected.
  71. * Volatile attribute removed from THREADINFO link pointer.
  72. *
  73. * Revision 1.12 2006/03/16 15:25:34 haraldkipp
  74. * Changed human readable strings from u_char to char to stop GCC 4 from
  75. * nagging about signedness.
  76. *
  77. * Revision 1.11 2005/10/07 21:48:25 hwmaier
  78. * Using __AVR_ENHANCED__ macro instead of __AVR_ATmega128__ to support also AT90CAN128 MCU
  79. *
  80. * Revision 1.10 2005/10/04 05:25:17 hwmaier
  81. * Added support for separating stack and conventional heap as required by AT09CAN128 MCUs
  82. *
  83. * Revision 1.9 2005/08/02 17:46:49 haraldkipp
  84. * Major API documentation update.
  85. *
  86. * Revision 1.8 2005/07/26 15:49:59 haraldkipp
  87. * Cygwin support added.
  88. *
  89. * Revision 1.7 2005/02/17 14:42:37 phblum
  90. * Removed volatile declarations of runQueue since it is not touched from interrupt context. Same for nutThreadList, runningThread and killedThreads.
  91. *
  92. * Revision 1.6 2005/02/16 19:53:15 haraldkipp
  93. * Ready-to-run queue handling removed from interrupt context.
  94. *
  95. * Revision 1.5 2004/07/09 19:51:34 freckle
  96. * Added new function NutThreadSetSleepMode to tell nut/os to set the MCU
  97. * into sleep mode when idle (avr-gcc && avr128 only)
  98. *
  99. * Revision 1.4 2004/04/07 12:13:57 haraldkipp
  100. * Matthias Ringwald's *nix emulation added
  101. *
  102. * Revision 1.3 2004/03/16 16:48:44 haraldkipp
  103. * Added Jan Dubiec's H8/300 port.
  104. *
  105. * Revision 1.2 2003/12/15 19:28:26 haraldkipp
  106. * Kill function prototypes
  107. *
  108. * Revision 1.1.1.1 2003/05/09 14:41:22 haraldkipp
  109. * Initial using 3.2.1
  110. *
  111. * Revision 1.14 2003/02/04 18:00:54 harald
  112. * Version 3 released
  113. *
  114. * Revision 1.13 2002/10/29 15:40:50 harald
  115. * *** empty log message ***
  116. *
  117. * Revision 1.12 2002/06/26 17:29:29 harald
  118. * First pre-release with 2.4 stack
  119. *
  120. * \endverbatim
  121. */
  122. #include <sys/types.h>
  123. #include <cfg/memory.h>
  124. #define DEADBEEF 0xDEADBEEF
  125. /*!
  126. * \addtogroup xgThread
  127. */
  128. /*@{*/
  129. /*!
  130. * Thread information structure type.
  131. */
  132. typedef struct _NUTTHREADINFO NUTTHREADINFO;
  133. /*!
  134. * \struct _NUTTHREADINFO thread.h sys/thread.h
  135. * \brief Thread information structure.
  136. *
  137. * \todo Sort items while considering alignment.
  138. */
  139. struct _NUTTHREADINFO {
  140. NUTTHREADINFO *td_next; /*!< \brief Linked list of all threads. */
  141. NUTTHREADINFO *td_qnxt; /*!< \brief Linked list of all queued thread. */
  142. volatile u_int td_qpec; /*!< \brief Pending event counter. */
  143. char td_name[9]; /*!< \brief Name of this thread. */
  144. u_char td_state; /*!< \brief Operating state. One of TDS_ */
  145. uptr_t td_sp; /*!< \brief Stack pointer. */
  146. u_char td_priority; /*!< \brief Priority level. 0 is highest priority. */
  147. u_char *td_memory; /*!< \brief Pointer to heap memory used for stack. */
  148. HANDLE td_timer; /*!< \brief Event timer. */
  149. volatile HANDLE td_queue; /*!< \brief Root entry of the waiting queue. */
  150. #if defined (__APPLE__) || defined(__linux__) || defined(__CYGWIN__)
  151. pthread_t td_pthread; /*!< \brief pthread for unix emulations. */
  152. void (*td_fn) (void *); /*!< \brief thread function */
  153. void *td_arg; /*!< \brief args given to NutCreateThread */
  154. pthread_cond_t td_cv; /*!< \brief conditional variable for unix emulations. */
  155. u_short td_cs_level; /*! \brief number critical sections has been entered without leaving */
  156. #endif
  157. };
  158. /*@}*/
  159. /*!
  160. * \name Thread States
  161. */
  162. /*@{*/
  163. #define TDS_TERM 0 /*!< Thread has exited. */
  164. #define TDS_RUNNING 1 /*!< Thread is running. */
  165. #define TDS_READY 2 /*!< Thread is ready to run. */
  166. #define TDS_SLEEP 3 /*!< Thread is sleeping. */
  167. /*@}*/
  168. #define SLEEP_MODE_NONE 0xff
  169. extern NUTTHREADINFO *runningThread;
  170. extern NUTTHREADINFO *nutThreadList;
  171. extern NUTTHREADINFO *runQueue;
  172. __BEGIN_DECLS
  173. /* Function prototypes. */
  174. #if defined (__APPLE__) || defined(__linux__) || defined(__CYGWIN__)
  175. extern void NutThreadInit(void);
  176. #endif
  177. #if defined(__GNUC__) && defined (__AVR_ENHANCED__)
  178. extern void NutThreadSetSleepMode(u_char mode);
  179. #endif
  180. extern HANDLE NutThreadCreate(char *name, void (*fn) (void *), void *arg, size_t stackSize);
  181. extern u_char NutThreadSetPriority(u_char level);
  182. extern void NutThreadKill(void);
  183. extern void NutThreadDestroy(void);
  184. extern void NutThreadExit(void);
  185. extern void NutThreadResume(void);
  186. extern void NutThreadWake(HANDLE timer, HANDLE th);
  187. extern void NutThreadYield(void);
  188. extern void NutThreadAddPriQueue(NUTTHREADINFO * td, NUTTHREADINFO * volatile *tqpp);
  189. extern void NutThreadRemoveQueue(NUTTHREADINFO * td, NUTTHREADINFO * volatile *tqpp);
  190. extern void NutThreadSwitch(void);
  191. extern HANDLE GetThreadByName(char *name);
  192. /*!
  193. * \brief Macro for thread entry definitions.
  194. */
  195. #define THREAD(threadfn, arg) \
  196. void threadfn(void *arg) __attribute__ ((noreturn)); \
  197. void threadfn(void *arg)
  198. __END_DECLS
  199. /* */
  200. #endif