[rtems commit] doc/c_user: Fix Lines that were too long
Joel Sherrill
joel at rtems.org
Tue Feb 26 13:59:05 UTC 2013
Module: rtems
Branch: master
Commit: 380daa257b3dabb1f7e83414f3a4f720cb4ca3ee
Changeset: http://git.rtems.org/rtems/commit/?id=380daa257b3dabb1f7e83414f3a4f720cb4ca3ee
Author: Joel Sherrill <joel.sherrill at oarcorp.com>
Date: Fri Feb 22 16:02:23 2013 -0600
doc/c_user: Fix Lines that were too long
---
doc/user/cpuuse.t | 4 ++--
doc/user/example.texi | 14 +++++++-------
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/doc/user/cpuuse.t b/doc/user/cpuuse.t
index 743f687..f3035d1 100644
--- a/doc/user/cpuuse.t
+++ b/doc/user/cpuuse.t
@@ -56,7 +56,7 @@ This routine prints a table with the following information per task:
The following is an example of the report generated:
- at example
+ at smallexample
@group
-------------------------------------------------------------------------------
CPU USAGE BY THREAD
@@ -72,7 +72,7 @@ The following is an example of the report generated:
TOTAL UNITS: 1608
-------------------------------------------------------------------------------
@end group
- at end example
+ at end smallexample
Notice that the "TOTAL UNITS" is greater than the ticks per reset.
This is an artifact of the way in which RTEMS keeps track of CPU
diff --git a/doc/user/example.texi b/doc/user/example.texi
index a9f67c6..f95868e 100644
--- a/doc/user/example.texi
+++ b/doc/user/example.texi
@@ -11,9 +11,7 @@
* This file contains an example of a simple RTEMS
* application. It instantiates the RTEMS Configuration
* Information using confdef.h and contains two tasks:
- * a * user initialization task and a simple task.
- *
- * This example assumes that a board support package exists.
+ * a user initialization task and a simple task.
*/
#include <rtems.h>
@@ -66,8 +64,11 @@ rtems_task user_application(rtems_task_argument argument)
@}
@}
-#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER /* for stdio */
-#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER /* for time services */
+/* The Console Driver supplies Standard I/O. */
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+
+/* The Clock Driver supplies the clock tick. */
+#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
#define CONFIGURE_MAXIMUM_TASKS 2
@@ -75,8 +76,7 @@ rtems_task user_application(rtems_task_argument argument)
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_INIT
-
-#include <confdefs.h>
+#include <rtems/confdefs.h>
@end example
More information about the vc
mailing list