Files
rtems/testsuites/libtests/top/task2.c
Jennifer Averett 410bcdfe5f top: Add new test.
2014-10-28 08:09:37 -05:00

35 lines
679 B
C

/* Task_2
*
* This routine serves as a test task. It calls the
* top command and forces an exit if the user requests it.
*
* Input parameters:
* argument - task argument
*
* Output parameters: NONE
*
* COPYRIGHT (c) 2014.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.org/license/LICENSE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "system.h"
#include <rtems/cpuuse.h>
rtems_task Task_2(
rtems_task_argument argument
)
{
rtems_cpu_usage_top();
TEST_END();
rtems_test_exit( 0 );
}