summaryrefslogtreecommitdiffstats
path: root/c_user/configuring_a_system.rst
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-02-18 16:22:28 +1100
committerAmar Takhar <verm@darkbeer.org>2016-05-02 20:51:26 -0400
commitbcd64c620a5ff444e1c041b825a2157fd931a414 (patch)
treec168e08d1759cf8cf439a07d307029db232af07e /c_user/configuring_a_system.rst
parentClean up. (diff)
downloadrtems-docs-bcd64c620a5ff444e1c041b825a2157fd931a414.tar.bz2
Minor fixes.
Diffstat (limited to '')
-rw-r--r--c_user/configuring_a_system.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/c_user/configuring_a_system.rst b/c_user/configuring_a_system.rst
index b0e2596..fe402d2 100644
--- a/c_user/configuring_a_system.rst
+++ b/c_user/configuring_a_system.rst
@@ -181,7 +181,7 @@ Format to be followed for making changes in this file
- If the data type is an integer, then it can have numbers, characters (in
case the value is defined using another macro) and arithmetic operations
- (+, -, \*, /).
+ (+, -, *, /).
- If the data type is a function pointer the first character should be an
alphabet or an underscore. The rest of the string can be alphanumeric.
@@ -1500,7 +1500,7 @@ Specifying POSIX API Initialization Thread Entry Point
``CONFIGURE_POSIX_INIT_THREAD_ENTRY_POINT``
*DATA TYPE:*
- POSIX thread function pointer (``void \*(*entry_point)(void \*)``).
+ POSIX thread function pointer (``void *(*entry_point)(void *)``).
*RANGE:*
Undefined or a valid POSIX thread function pointer.
@@ -4017,10 +4017,10 @@ will ensure that the two systems cannot interfere in an undesirable way.
/* Make the scheduler algorithm available */
#define CONFIGURE_SCHEDULER_PRIORITY_SMP
#include <rtems/scheduler.h>
- /* Create contexts for the two scheduler instances \*/
+ /* Create contexts for the two scheduler instances */
RTEMS_SCHEDULER_CONTEXT_PRIORITY_SMP(io, CONFIGURE_MAXIMUM_PRIORITY + 1);
RTEMS_SCHEDULER_CONTEXT_PRIORITY_SMP(work, CONFIGURE_MAXIMUM_PRIORITY + 1);
- /* Define the scheduler table \*/
+ /* Define the scheduler table */
#define CONFIGURE_SCHEDULER_CONTROLS \\
RTEMS_SCHEDULER_CONTROL_PRIORITY_SMP( \
io, \