summaryrefslogtreecommitdiffstats
path: root/schedsim/shell
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-04-30 19:41:56 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-04-30 19:41:56 -0500
commita2aad55636d07d4229b09c7abbfb1cb951044776 (patch)
treece22d68d1870bf29759eefd91c287cf721d2be0c /schedsim/shell
parentaclocal/*.m4: Update from RTEMS (diff)
downloadrtems-schedsim-a2aad55636d07d4229b09c7abbfb1cb951044776.tar.bz2
Remove CVS $
Diffstat (limited to 'schedsim/shell')
-rw-r--r--schedsim/shell/Makefile.am4
-rwxr-xr-xschedsim/shell/run_scenarios2
-rw-r--r--schedsim/shell/schedsim_priority/Makefile.am4
-rw-r--r--schedsim/shell/schedsim_priority/printheir_executing.c4
-rw-r--r--schedsim/shell/schedsim_priority/schedsim.cc4
-rw-r--r--schedsim/shell/schedsim_priority/smp_stub.c4
-rw-r--r--schedsim/shell/schedsim_priority/wrap_thread_dispatch.c4
-rw-r--r--schedsim/shell/schedsim_smpsimple/Makefile.am4
-rw-r--r--schedsim/shell/schedsim_smpsimple/README4
-rw-r--r--schedsim/shell/schedsim_smpsimple/TODO4
-rw-r--r--schedsim/shell/schedsim_smpsimple/add_commands.c4
-rw-r--r--schedsim/shell/schedsim_smpsimple/config.c2
-rw-r--r--schedsim/shell/schedsim_smpsimple/main_current_cpu.c4
-rw-r--r--schedsim/shell/schedsim_smpsimple/main_dispatch.c4
-rw-r--r--schedsim/shell/schedsim_smpsimple/main_dump_all_cpus.c4
-rw-r--r--schedsim/shell/schedsim_smpsimple/main_dump_ready_tasks.c4
-rw-r--r--schedsim/shell/schedsim_smpsimple/printheir_executing.c4
-rw-r--r--schedsim/shell/schedsim_smpsimple/schedsim.cc4
-rw-r--r--schedsim/shell/schedsim_smpsimple/smp_stub.c4
-rw-r--r--schedsim/shell/schedsim_smpsimple/wrap_thread_dispatch.c4
-rw-r--r--schedsim/shell/shared/Makefile.am4
-rw-r--r--schedsim/shell/shared/commands.c4
-rw-r--r--schedsim/shell/shared/include/rtems/confdefs.h2
-rw-r--r--schedsim/shell/shared/include/shell.h4
-rw-r--r--schedsim/shell/shared/lookup_semaphore.c4
-rw-r--r--schedsim/shell/shared/lookup_task.c4
-rw-r--r--schedsim/shell/shared/main_clocktick.c4
-rw-r--r--schedsim/shell/shared/main_echo.c4
-rw-r--r--schedsim/shell/shared/main_executing.c4
-rw-r--r--schedsim/shell/shared/main_heir.c4
-rw-r--r--schedsim/shell/shared/main_help.c4
-rw-r--r--schedsim/shell/shared/main_rtemsinit.c4
-rw-r--r--schedsim/shell/shared/main_semcreate.c4
-rw-r--r--schedsim/shell/shared/main_semdelete.c4
-rw-r--r--schedsim/shell/shared/main_semflush.c4
-rw-r--r--schedsim/shell/shared/main_semobtain.c4
-rw-r--r--schedsim/shell/shared/main_semrelease.c4
-rw-r--r--schedsim/shell/shared/main_taskcreate.c4
-rw-r--r--schedsim/shell/shared/main_taskdelete.c4
-rw-r--r--schedsim/shell/shared/main_taskmode.c4
-rw-r--r--schedsim/shell/shared/main_taskpriority.c4
-rw-r--r--schedsim/shell/shared/main_taskresume.c4
-rw-r--r--schedsim/shell/shared/main_tasksuspend.c4
-rw-r--r--schedsim/shell/shared/main_taskwakeafter.c4
-rw-r--r--schedsim/shell/shared/schedsim_shell.h4
-rw-r--r--schedsim/shell/shared/shell_cmdset.c2
-rw-r--r--schedsim/shell/shared/shell_makeargs.c4
47 files changed, 38 insertions, 142 deletions
diff --git a/schedsim/shell/Makefile.am b/schedsim/shell/Makefile.am
index 30b2456..2e819bc 100644
--- a/schedsim/shell/Makefile.am
+++ b/schedsim/shell/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
ACLOCAL_AMFLAGS = -I ./../aclocal
SUBDIRS = shared schedsim_priority
diff --git a/schedsim/shell/run_scenarios b/schedsim/shell/run_scenarios
index fcd3a36..76f9e69 100755
--- a/schedsim/shell/run_scenarios
+++ b/schedsim/shell/run_scenarios
@@ -1,7 +1,5 @@
#! /bin/sh
#
-# $Id$
-#
fatal()
{
diff --git a/schedsim/shell/schedsim_priority/Makefile.am b/schedsim/shell/schedsim_priority/Makefile.am
index 4dee389..8cf0e86 100644
--- a/schedsim/shell/schedsim_priority/Makefile.am
+++ b/schedsim/shell/schedsim_priority/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
bin_PROGRAMS = schedsim_priority
schedsim_priority_SOURCES = config.c \
schedsim.cc wrap_thread_dispatch.c printheir_executing.c
diff --git a/schedsim/shell/schedsim_priority/printheir_executing.c b/schedsim/shell/schedsim_priority/printheir_executing.c
index b0855d3..6604adb 100644
--- a/schedsim/shell/schedsim_priority/printheir_executing.c
+++ b/schedsim/shell/schedsim_priority/printheir_executing.c
@@ -1,14 +1,12 @@
/*
* printheir_executing
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include <stdio.h>
diff --git a/schedsim/shell/schedsim_priority/schedsim.cc b/schedsim/shell/schedsim_priority/schedsim.cc
index b70dd71..5a204be 100644
--- a/schedsim/shell/schedsim_priority/schedsim.cc
+++ b/schedsim/shell/schedsim_priority/schedsim.cc
@@ -1,12 +1,10 @@
/*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include <newlib/getopt.h>
diff --git a/schedsim/shell/schedsim_priority/smp_stub.c b/schedsim/shell/schedsim_priority/smp_stub.c
index e67391e..d7c7323 100644
--- a/schedsim/shell/schedsim_priority/smp_stub.c
+++ b/schedsim/shell/schedsim_priority/smp_stub.c
@@ -1,14 +1,12 @@
/*
* RTEMS SMP Support for Single Core
*
- * COPYRIGHT (c) 1989-2011.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include <rtems.h>
diff --git a/schedsim/shell/schedsim_priority/wrap_thread_dispatch.c b/schedsim/shell/schedsim_priority/wrap_thread_dispatch.c
index 3432188..f9f29ee 100644
--- a/schedsim/shell/schedsim_priority/wrap_thread_dispatch.c
+++ b/schedsim/shell/schedsim_priority/wrap_thread_dispatch.c
@@ -1,14 +1,12 @@
/*
* Thread Dispatch Wrapper Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include "shell.h"
diff --git a/schedsim/shell/schedsim_smpsimple/Makefile.am b/schedsim/shell/schedsim_smpsimple/Makefile.am
index 7014638..288a659 100644
--- a/schedsim/shell/schedsim_smpsimple/Makefile.am
+++ b/schedsim/shell/schedsim_smpsimple/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
bin_PROGRAMS = schedsim_smpsimple
schedsim_smpsimple_SOURCES = add_commands.c config.c \
main_current_cpu.c main_dispatch.c main_dump_all_cpus.c \
diff --git a/schedsim/shell/schedsim_smpsimple/README b/schedsim/shell/schedsim_smpsimple/README
index 9090c3f..3b45689 100644
--- a/schedsim/shell/schedsim_smpsimple/README
+++ b/schedsim/shell/schedsim_smpsimple/README
@@ -1,7 +1,3 @@
-#
-# $Id$
-#
-
This is a scheduler simulator instance for developing the
Simple SMP Scheduler. Once this scheduler is completed,
it will be integrated into the proper locations of the
diff --git a/schedsim/shell/schedsim_smpsimple/TODO b/schedsim/shell/schedsim_smpsimple/TODO
index 63800e5..649c5a0 100644
--- a/schedsim/shell/schedsim_smpsimple/TODO
+++ b/schedsim/shell/schedsim_smpsimple/TODO
@@ -1,7 +1,3 @@
-#
-# $Id$
-#
-
Working As of 19 April 2011
===========================
cpus1_mode
diff --git a/schedsim/shell/schedsim_smpsimple/add_commands.c b/schedsim/shell/schedsim_smpsimple/add_commands.c
index d41b314..e95f395 100644
--- a/schedsim/shell/schedsim_smpsimple/add_commands.c
+++ b/schedsim/shell/schedsim_smpsimple/add_commands.c
@@ -1,12 +1,10 @@
/*
- * COPYRIGHT (c) 1989-2011.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include <newlib/getopt.h>
diff --git a/schedsim/shell/schedsim_smpsimple/config.c b/schedsim/shell/schedsim_smpsimple/config.c
index 8dfcd53..4102054 100644
--- a/schedsim/shell/schedsim_smpsimple/config.c
+++ b/schedsim/shell/schedsim_smpsimple/config.c
@@ -1,5 +1,5 @@
/*
- * $Id$
+ *
*/
#include <rtems.h>
diff --git a/schedsim/shell/schedsim_smpsimple/main_current_cpu.c b/schedsim/shell/schedsim_smpsimple/main_current_cpu.c
index cb8ceb4..73edd3e 100644
--- a/schedsim/shell/schedsim_smpsimple/main_current_cpu.c
+++ b/schedsim/shell/schedsim_smpsimple/main_current_cpu.c
@@ -1,12 +1,10 @@
/*
- * COPYRIGHT (c) 1989-2011.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include <newlib/getopt.h>
diff --git a/schedsim/shell/schedsim_smpsimple/main_dispatch.c b/schedsim/shell/schedsim_smpsimple/main_dispatch.c
index 22cea2b..5f13da6 100644
--- a/schedsim/shell/schedsim_smpsimple/main_dispatch.c
+++ b/schedsim/shell/schedsim_smpsimple/main_dispatch.c
@@ -1,12 +1,10 @@
/*
- * COPYRIGHT (c) 1989-2011.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include <newlib/getopt.h>
diff --git a/schedsim/shell/schedsim_smpsimple/main_dump_all_cpus.c b/schedsim/shell/schedsim_smpsimple/main_dump_all_cpus.c
index 06812d2..7e19065 100644
--- a/schedsim/shell/schedsim_smpsimple/main_dump_all_cpus.c
+++ b/schedsim/shell/schedsim_smpsimple/main_dump_all_cpus.c
@@ -1,12 +1,10 @@
/*
- * COPYRIGHT (c) 1989-2011.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include <newlib/getopt.h>
diff --git a/schedsim/shell/schedsim_smpsimple/main_dump_ready_tasks.c b/schedsim/shell/schedsim_smpsimple/main_dump_ready_tasks.c
index 8b4a110..2ee875b 100644
--- a/schedsim/shell/schedsim_smpsimple/main_dump_ready_tasks.c
+++ b/schedsim/shell/schedsim_smpsimple/main_dump_ready_tasks.c
@@ -1,12 +1,10 @@
/*
- * COPYRIGHT (c) 1989-2011.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include <newlib/getopt.h>
diff --git a/schedsim/shell/schedsim_smpsimple/printheir_executing.c b/schedsim/shell/schedsim_smpsimple/printheir_executing.c
index b0855d3..6604adb 100644
--- a/schedsim/shell/schedsim_smpsimple/printheir_executing.c
+++ b/schedsim/shell/schedsim_smpsimple/printheir_executing.c
@@ -1,14 +1,12 @@
/*
* printheir_executing
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include <stdio.h>
diff --git a/schedsim/shell/schedsim_smpsimple/schedsim.cc b/schedsim/shell/schedsim_smpsimple/schedsim.cc
index 733d718..f0960a8 100644
--- a/schedsim/shell/schedsim_smpsimple/schedsim.cc
+++ b/schedsim/shell/schedsim_smpsimple/schedsim.cc
@@ -1,12 +1,10 @@
/*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include <newlib/getopt.h>
diff --git a/schedsim/shell/schedsim_smpsimple/smp_stub.c b/schedsim/shell/schedsim_smpsimple/smp_stub.c
index 65d0165..581f4ac 100644
--- a/schedsim/shell/schedsim_smpsimple/smp_stub.c
+++ b/schedsim/shell/schedsim_smpsimple/smp_stub.c
@@ -1,14 +1,12 @@
/*
* RTEMS SMP Support for Single Core
*
- * COPYRIGHT (c) 1989-2011.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include <rtems.h>
diff --git a/schedsim/shell/schedsim_smpsimple/wrap_thread_dispatch.c b/schedsim/shell/schedsim_smpsimple/wrap_thread_dispatch.c
index 3432188..f9f29ee 100644
--- a/schedsim/shell/schedsim_smpsimple/wrap_thread_dispatch.c
+++ b/schedsim/shell/schedsim_smpsimple/wrap_thread_dispatch.c
@@ -1,14 +1,12 @@
/*
* Thread Dispatch Wrapper Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include "shell.h"
diff --git a/schedsim/shell/shared/Makefile.am b/schedsim/shell/shared/Makefile.am
index 18d5904..2e250ff 100644
--- a/schedsim/shell/shared/Makefile.am
+++ b/schedsim/shell/shared/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
ACLOCAL_AMFLAGS = -I ../../../aclocal
lib_LIBRARIES = libschedsim.a
diff --git a/schedsim/shell/shared/commands.c b/schedsim/shell/shared/commands.c
index c872c2e..af15638 100644
--- a/schedsim/shell/shared/commands.c
+++ b/schedsim/shell/shared/commands.c
@@ -1,14 +1,12 @@
/*
* BASED UPON SOURCE IN RTEMS, MODIFIED FOR SIMULATOR
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include "shell.h"
diff --git a/schedsim/shell/shared/include/rtems/confdefs.h b/schedsim/shell/shared/include/rtems/confdefs.h
index 3da247f..fcc7832 100644
--- a/schedsim/shell/shared/include/rtems/confdefs.h
+++ b/schedsim/shell/shared/include/rtems/confdefs.h
@@ -1,5 +1,5 @@
/*
- * $Id$
+ *
*/
/*
diff --git a/schedsim/shell/shared/include/shell.h b/schedsim/shell/shared/include/shell.h
index d5209f6..f172695 100644
--- a/schedsim/shell/shared/include/shell.h
+++ b/schedsim/shell/shared/include/shell.h
@@ -1,14 +1,12 @@
/*
* BASED UPON SOURCE IN RTEMS, MODIFIED FOR SIMULATOR
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
diff --git a/schedsim/shell/shared/lookup_semaphore.c b/schedsim/shell/shared/lookup_semaphore.c
index 70b0887..603f930 100644
--- a/schedsim/shell/shared/lookup_semaphore.c
+++ b/schedsim/shell/shared/lookup_semaphore.c
@@ -1,12 +1,10 @@
/*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#define METHOD_NAME lookup_semaphore
diff --git a/schedsim/shell/shared/lookup_task.c b/schedsim/shell/shared/lookup_task.c
index 91ab322..87f6c6c 100644
--- a/schedsim/shell/shared/lookup_task.c
+++ b/schedsim/shell/shared/lookup_task.c
@@ -1,14 +1,12 @@
/*
* Given Name or ID String, give Id
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_clocktick.c b/schedsim/shell/shared/main_clocktick.c
index 8e1f8aa..d2e904d 100644
--- a/schedsim/shell/shared/main_clocktick.c
+++ b/schedsim/shell/shared/main_clocktick.c
@@ -1,14 +1,12 @@
/*
* Task Priority Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_echo.c b/schedsim/shell/shared/main_echo.c
index f3c9013..a396d49 100644
--- a/schedsim/shell/shared/main_echo.c
+++ b/schedsim/shell/shared/main_echo.c
@@ -51,10 +51,6 @@
* expanded. printf is now a builtin of netbsd's sh and csh.
*/
-/*
- * $Id$
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/schedsim/shell/shared/main_executing.c b/schedsim/shell/shared/main_executing.c
index 31b9402..5ca585e 100644
--- a/schedsim/shell/shared/main_executing.c
+++ b/schedsim/shell/shared/main_executing.c
@@ -1,14 +1,12 @@
/*
* Thread Executing Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_heir.c b/schedsim/shell/shared/main_heir.c
index a2a6e19..bb8c7f5 100644
--- a/schedsim/shell/shared/main_heir.c
+++ b/schedsim/shell/shared/main_heir.c
@@ -1,14 +1,12 @@
/*
* Thread Heir Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_help.c b/schedsim/shell/shared/main_help.c
index 1938b1c..0ecfb20 100644
--- a/schedsim/shell/shared/main_help.c
+++ b/schedsim/shell/shared/main_help.c
@@ -1,14 +1,12 @@
/*
* Shell Help Command
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_rtemsinit.c b/schedsim/shell/shared/main_rtemsinit.c
index 5580785..51510d6 100644
--- a/schedsim/shell/shared/main_rtemsinit.c
+++ b/schedsim/shell/shared/main_rtemsinit.c
@@ -1,14 +1,12 @@
/*
* Initialize RTEMS Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_semcreate.c b/schedsim/shell/shared/main_semcreate.c
index ad2c9f8..069d72a 100644
--- a/schedsim/shell/shared/main_semcreate.c
+++ b/schedsim/shell/shared/main_semcreate.c
@@ -1,14 +1,12 @@
/*
* Task Create Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_semdelete.c b/schedsim/shell/shared/main_semdelete.c
index a3e93b7..ed227b3 100644
--- a/schedsim/shell/shared/main_semdelete.c
+++ b/schedsim/shell/shared/main_semdelete.c
@@ -1,14 +1,12 @@
/*
* Task Delete Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_semflush.c b/schedsim/shell/shared/main_semflush.c
index 17638e8..079e43f 100644
--- a/schedsim/shell/shared/main_semflush.c
+++ b/schedsim/shell/shared/main_semflush.c
@@ -1,14 +1,12 @@
/*
* Task Delete Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_semobtain.c b/schedsim/shell/shared/main_semobtain.c
index 83ac8d3..4df36b3 100644
--- a/schedsim/shell/shared/main_semobtain.c
+++ b/schedsim/shell/shared/main_semobtain.c
@@ -1,14 +1,12 @@
/*
* Task Delete Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_semrelease.c b/schedsim/shell/shared/main_semrelease.c
index 1cfd632..78eec40 100644
--- a/schedsim/shell/shared/main_semrelease.c
+++ b/schedsim/shell/shared/main_semrelease.c
@@ -1,14 +1,12 @@
/*
* Task Delete Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_taskcreate.c b/schedsim/shell/shared/main_taskcreate.c
index 017caa6..ec4c6a6 100644
--- a/schedsim/shell/shared/main_taskcreate.c
+++ b/schedsim/shell/shared/main_taskcreate.c
@@ -1,14 +1,12 @@
/*
* Task Create Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_taskdelete.c b/schedsim/shell/shared/main_taskdelete.c
index 8ba68cc..2188820 100644
--- a/schedsim/shell/shared/main_taskdelete.c
+++ b/schedsim/shell/shared/main_taskdelete.c
@@ -1,14 +1,12 @@
/*
* Task Delete Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_taskmode.c b/schedsim/shell/shared/main_taskmode.c
index 850c1f2..e8465c6 100644
--- a/schedsim/shell/shared/main_taskmode.c
+++ b/schedsim/shell/shared/main_taskmode.c
@@ -1,14 +1,12 @@
/*
* Task Delete Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_taskpriority.c b/schedsim/shell/shared/main_taskpriority.c
index fd48124..04a8fe6 100644
--- a/schedsim/shell/shared/main_taskpriority.c
+++ b/schedsim/shell/shared/main_taskpriority.c
@@ -1,14 +1,12 @@
/*
* Task Delete Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_taskresume.c b/schedsim/shell/shared/main_taskresume.c
index a155896..e450558 100644
--- a/schedsim/shell/shared/main_taskresume.c
+++ b/schedsim/shell/shared/main_taskresume.c
@@ -1,14 +1,12 @@
/*
* Task Delete Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_tasksuspend.c b/schedsim/shell/shared/main_tasksuspend.c
index 1649639..9be5d90 100644
--- a/schedsim/shell/shared/main_tasksuspend.c
+++ b/schedsim/shell/shared/main_tasksuspend.c
@@ -1,14 +1,12 @@
/*
* Task Delete Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/main_taskwakeafter.c b/schedsim/shell/shared/main_taskwakeafter.c
index 9ed343c..ebec01a 100644
--- a/schedsim/shell/shared/main_taskwakeafter.c
+++ b/schedsim/shell/shared/main_taskwakeafter.c
@@ -1,14 +1,12 @@
/*
* Task Priority Shell Command Implmentation
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/schedsim_shell.h b/schedsim/shell/shared/schedsim_shell.h
index f9fc0b1..c6de989 100644
--- a/schedsim/shell/shared/schedsim_shell.h
+++ b/schedsim/shell/shared/schedsim_shell.h
@@ -1,14 +1,12 @@
/*
* BASED UPON SOURCE IN RTEMS, MODIFIED FOR SIMULATOR
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#ifndef __SCHEDSIM_SHELL_h
diff --git a/schedsim/shell/shared/shell_cmdset.c b/schedsim/shell/shared/shell_cmdset.c
index 83330b0..ece9e43 100644
--- a/schedsim/shell/shared/shell_cmdset.c
+++ b/schedsim/shell/shared/shell_cmdset.c
@@ -8,8 +8,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/schedsim/shell/shared/shell_makeargs.c b/schedsim/shell/shared/shell_makeargs.c
index e959138..161892d 100644
--- a/schedsim/shell/shared/shell_makeargs.c
+++ b/schedsim/shell/shared/shell_makeargs.c
@@ -1,14 +1,12 @@
/*
* Split string into argc/argv style argument list
*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2013.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#if HAVE_CONFIG_H