2010-02-02 21:27:53 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
2012-01-21 14:29:42 +00:00
|
|
|
2011,2012 Giovanni Di Sirio.
|
2010-02-02 21:27:53 +00:00
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-02-27 08:54:22 +00:00
|
|
|
* @file chregistry.h
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief Threads registry macros and structures.
|
|
|
|
*
|
2010-02-02 21:27:53 +00:00
|
|
|
* @addtogroup registry
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2010-02-27 08:54:22 +00:00
|
|
|
#ifndef _CHREGISTRY_H_
|
|
|
|
#define _CHREGISTRY_H_
|
2010-02-02 21:27:53 +00:00
|
|
|
|
2011-07-08 19:29:00 +00:00
|
|
|
#if CH_USE_REGISTRY || defined(__DOXYGEN__)
|
2011-08-23 10:09:08 +00:00
|
|
|
/**
|
|
|
|
* @name Macro Functions
|
|
|
|
* @{
|
|
|
|
*/
|
2011-07-08 19:29:00 +00:00
|
|
|
/**
|
|
|
|
* @brief Sets the current thread name.
|
|
|
|
* @pre This function only stores the pointer to the name if the option
|
|
|
|
* @p CH_USE_REGISTRY is enabled else no action is performed.
|
|
|
|
*
|
|
|
|
* @param[in] p thread name as a zero terminated string
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
*/
|
|
|
|
#define chRegSetThreadName(p) (currp->p_name = (p))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns the name of the specified thread.
|
|
|
|
* @pre This function only returns the pointer to the name if the option
|
|
|
|
* @p CH_USE_REGISTRY is enabled else @p NULL is returned.
|
|
|
|
*
|
|
|
|
* @param[in] tp pointer to the thread
|
|
|
|
*
|
|
|
|
* @return Thread name as a zero terminated string.
|
|
|
|
* @retval NULL if the thread name has not been set.
|
|
|
|
*/
|
|
|
|
#define chRegGetThreadName(tp) ((tp)->p_name)
|
2011-08-23 10:09:08 +00:00
|
|
|
/** @} */
|
2011-07-08 19:29:00 +00:00
|
|
|
#else /* !CH_USE_REGISTRY */
|
|
|
|
#define chRegSetThreadName(p)
|
|
|
|
#define chRegGetThreadName(tp) NULL
|
|
|
|
#endif /* !CH_USE_REGISTRY */
|
|
|
|
|
2010-09-18 06:48:56 +00:00
|
|
|
#if CH_USE_REGISTRY || defined(__DOXYGEN__)
|
2010-02-02 21:27:53 +00:00
|
|
|
/**
|
|
|
|
* @brief Removes a thread from the registry list.
|
2010-02-06 12:31:09 +00:00
|
|
|
* @note This macro is not meant for use in application code.
|
|
|
|
*
|
2010-02-21 07:24:53 +00:00
|
|
|
* @param[in] tp thread to remove from the registry
|
2010-02-02 21:27:53 +00:00
|
|
|
*/
|
|
|
|
#define REG_REMOVE(tp) { \
|
|
|
|
(tp)->p_older->p_newer = (tp)->p_newer; \
|
|
|
|
(tp)->p_newer->p_older = (tp)->p_older; \
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Adds a thread to the registry list.
|
|
|
|
* @note This macro is not meant for use in application code.
|
2010-02-06 12:31:09 +00:00
|
|
|
*
|
|
|
|
* @param[in] tp thread to add to the registry
|
2010-02-02 21:27:53 +00:00
|
|
|
*/
|
|
|
|
#define REG_INSERT(tp) { \
|
|
|
|
(tp)->p_newer = (Thread *)&rlist; \
|
2010-03-19 15:45:25 +00:00
|
|
|
(tp)->p_older = rlist.r_older; \
|
|
|
|
(tp)->p_older->p_newer = rlist.r_older = (tp); \
|
2010-02-02 21:27:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
Thread *chRegFirstThread(void);
|
|
|
|
Thread *chRegNextThread(Thread *tp);
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CH_USE_REGISTRY */
|
|
|
|
|
2010-02-27 08:54:22 +00:00
|
|
|
#endif /* _CHREGISTRY_H_ */
|
2010-02-02 21:27:53 +00:00
|
|
|
|
|
|
|
/** @} */
|