2014-09-16 13:09:14 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
2013-11-27 16:28:31 +01:00
|
|
|
/**
|
2013-11-27 17:54:30 +01:00
|
|
|
* @defgroup sys_ps PS
|
|
|
|
* @ingroup sys
|
|
|
|
* @brief Show list with all threads
|
2015-03-18 14:27:48 +01:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief List information about all active threads
|
|
|
|
*
|
|
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
2015-04-19 11:41:47 +02:00
|
|
|
* @author Oliver Hahm <oliver.hahm@inria.fr>
|
2013-11-27 16:28:31 +01:00
|
|
|
*/
|
2014-02-11 18:15:43 +01:00
|
|
|
|
2016-10-26 21:53:58 +02:00
|
|
|
#ifndef PS_H
|
|
|
|
#define PS_H
|
2010-09-24 16:50:14 +02:00
|
|
|
|
2014-10-10 11:51:11 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-04-19 11:40:26 +02:00
|
|
|
/**
|
|
|
|
* @brief Print information to all active threads to stdout.
|
|
|
|
*/
|
2015-04-17 10:02:54 +02:00
|
|
|
void ps(void);
|
2010-09-24 16:50:14 +02:00
|
|
|
|
2014-10-10 11:51:11 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-10-26 21:53:58 +02:00
|
|
|
#endif /* PS_H */
|
2015-03-18 14:27:48 +01:00
|
|
|
/** @} */
|