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
|
2013-11-27 16:28:31 +01:00
|
|
|
*/
|
2014-02-11 18:15:43 +01:00
|
|
|
|
2010-09-24 16:50:14 +02:00
|
|
|
#ifndef __PS_H
|
2013-06-22 05:11:53 +02:00
|
|
|
#define __PS_H
|
2010-09-24 16:50:14 +02:00
|
|
|
|
2013-02-08 17:37:02 +01:00
|
|
|
void thread_print_all(void);
|
2014-02-21 19:10:24 +01:00
|
|
|
void _ps_handler(int argc, char **argv);
|
2010-09-24 16:50:14 +02:00
|
|
|
|
|
|
|
#endif /* __PS_H */
|