summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2014-05-14 09:23:46 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-05-14 09:40:20 -0500
commitd23e0f0a3a3cd62c63abf5a91a9f1232a02d1f4c (patch)
tree7793f7f028d957b832793a03836289754b7ae07b
parentschedsim_smpsimple: Add configure of smp simple scheduler. (diff)
downloadrtems-schedsim-d23e0f0a3a3cd62c63abf5a91a9f1232a02d1f4c.tar.bz2
main_taskpriority.c: Fix typo
-rw-r--r--schedsim/shell/shared/main_taskpriority.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/schedsim/shell/shared/main_taskpriority.c b/schedsim/shell/shared/main_taskpriority.c
index 04a8fe6..8087329 100644
--- a/schedsim/shell/shared/main_taskpriority.c
+++ b/schedsim/shell/shared/main_taskpriority.c
@@ -1,7 +1,11 @@
-/*
- * Task Delete Shell Command Implmentation
+/**
+ * @file
*
- * COPYRIGHT (c) 1989-2013.
+ * Task Set/Get Priority Shell Command Implmentation
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2014.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -50,7 +54,7 @@ int rtems_shell_main_task_priority(
new = (rtems_task_priority) tmp;
/*
- * Now priority the task
+ * Now set and/or obtain the priority the task
*/
status = rtems_task_set_priority( id, new, &old );
if ( status != RTEMS_SUCCESSFUL ) {