2001-01-16 Joel Sherrill <joel@OARcorp.com>

* src/taskmode.c: Ensure the this service does not dispatch before
	tasking is enabled at initialization time.
This commit is contained in:
Joel Sherrill
2002-01-16 22:09:35 +00:00
parent b736beb508
commit 3afb0d231a
4 changed files with 16 additions and 4 deletions
+5
View File
@@ -1,3 +1,8 @@
2001-01-16 Joel Sherrill <joel@OARcorp.com>
* src/taskmode.c: Ensure the this service does not dispatch before
tasking is enabled at initialization time.
2002-01-07 Joel Sherrill <joel@OARcorp.com>
* optman/, optman/.cvsignore, optman/Makefile.am, optman/no-dpmem.c,
+3 -2
View File
@@ -114,8 +114,9 @@ rtems_status_code rtems_task_mode(
}
}
if ( _Thread_Evaluate_mode() || needs_asr_dispatching )
_Thread_Dispatch();
if ( _System_state_Is_up(_System_state_Current) )
if ( _Thread_Evaluate_mode() || needs_asr_dispatching )
_Thread_Dispatch();
return RTEMS_SUCCESSFUL;
}
+5
View File
@@ -1,3 +1,8 @@
2001-01-16 Joel Sherrill <joel@OARcorp.com>
* src/taskmode.c: Ensure the this service does not dispatch before
tasking is enabled at initialization time.
2002-01-07 Joel Sherrill <joel@OARcorp.com>
* optman/, optman/.cvsignore, optman/Makefile.am, optman/no-dpmem.c,
+3 -2
View File
@@ -114,8 +114,9 @@ rtems_status_code rtems_task_mode(
}
}
if ( _Thread_Evaluate_mode() || needs_asr_dispatching )
_Thread_Dispatch();
if ( _System_state_Is_up(_System_state_Current) )
if ( _Thread_Evaluate_mode() || needs_asr_dispatching )
_Thread_Dispatch();
return RTEMS_SUCCESSFUL;
}