rhealstone/*.c: Add Print_Warning() call to indicate debug enabled

This commit is contained in:
Joel Sherrill
2014-01-05 10:39:34 -06:00
parent acc636e1b5
commit e8c7dbe736
6 changed files with 11 additions and 1 deletions

View File

@@ -32,6 +32,8 @@ rtems_task Init( rtems_task_argument ignored )
rtems_task_priority pri;
rtems_mode prev_mode;
Print_Warning();
sem_attr = RTEMS_INHERIT_PRIORITY | RTEMS_BINARY_SEMAPHORE | RTEMS_PRIORITY;
sem_name = rtems_build_name( 'S','0',' ',' ' );

View File

@@ -52,7 +52,7 @@ rtems_task Init(
)
{
rtems_status_code status;
rtems_id Task_id
rtems_id Task_id;
Print_Warning();

View File

@@ -33,6 +33,8 @@ void Init(
{
rtems_status_code status;
Print_Warning();
status = rtems_message_queue_create(
rtems_build_name( 'M', 'Q', '1', ' ' ),
1,

View File

@@ -30,6 +30,8 @@ rtems_task Init( rtems_task_argument ignored )
rtems_task_priority pri;
rtems_mode prev_mode;
Print_Warning();
sem_attr = RTEMS_BINARY_SEMAPHORE | RTEMS_PRIORITY;
sem_name = rtems_build_name( 'S','0',' ',' ' );

View File

@@ -67,6 +67,8 @@ rtems_task Task02( rtems_task_argument ignored )
rtems_task Init( rtems_task_argument ignored )
{
Print_Warning();
Task_name[0] = rtems_build_name( 'T','A','0','1' );
status = rtems_task_create(
Task_name[0],

View File

@@ -62,6 +62,8 @@ rtems_task Task01( rtems_task_argument ignored )
rtems_task Init( rtems_task_argument ignored )
{
Print_Warning();
Task_name[0] = rtems_build_name( 'T','A','0','1' );
status = rtems_task_create(
Task_name[0],