summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/cpuuse.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/include/rtems/cpuuse.h')
-rw-r--r--cpukit/include/rtems/cpuuse.h88
1 files changed, 88 insertions, 0 deletions
diff --git a/cpukit/include/rtems/cpuuse.h b/cpukit/include/rtems/cpuuse.h
new file mode 100644
index 0000000000..23f58faf1b
--- /dev/null
+++ b/cpukit/include/rtems/cpuuse.h
@@ -0,0 +1,88 @@
+/**
+ * @file rtems/cpuuse.h
+ *
+ * @defgroup libmisc_cpuuse CPU Usage
+ *
+ * @ingroup libmisc
+ * @brief CPU Usage Report
+ *
+ * This include file contains information necessary to utilize
+ * and install the cpu usage reporting mechanism.
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2011.
+ * 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.
+ */
+
+#ifndef __RTEMS_CPUUSE_h
+#define __RTEMS_CPUUSE_h
+
+#include <rtems.h>
+#include <rtems/print.h>
+
+/**
+ * @defgroup libmisc_cpuuse CPU Usage
+ *
+ * @ingroup libmisc
+ */
+/**@{*/
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/*
+ * rtems_cpu_usage_report_with_handler
+ */
+
+void rtems_cpu_usage_report_with_plugin( const rtems_printer *printer );
+
+/**
+ * @brief Report CPU usage.
+ *
+ * CPU Usage Reporter
+ */
+
+void rtems_cpu_usage_report( void );
+
+/**
+ * @brief CPU usage Top plugin
+ *
+ * Report CPU Usage in top format to
+ * to a print plugin.
+ */
+void rtems_cpu_usage_top_with_plugin( const rtems_printer *printer );
+
+/**
+ * @brief CPU usage top.
+ *
+ * CPU Usage top
+ */
+
+void rtems_cpu_usage_top( void );
+
+/**
+ * @brief Reset CPU usage.
+ *
+ * CPU Usage Reporter
+ */
+
+void rtems_cpu_usage_reset( void );
+
+/**
+ * @brief Reports per-processor information.
+ *
+ * @return The number of characters printed.
+ */
+int rtems_cpu_info_report( const rtems_printer *printer );
+
+#ifdef __cplusplus
+}
+#endif
+/**@}*/
+#endif
+/* end of include file */