mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-24 14:29:13 +08:00
score: Introduce Thread_Entry_information
This avoids potential dead code in _Thread_Handler(). It gets rid of the dangerous function pointer casts. Update #2514.
This commit is contained in:
@@ -20,18 +20,15 @@
|
||||
#include <bsp.h>
|
||||
#include <rtems/score/thread.h>
|
||||
|
||||
/* forward declarations to avoid warnings */
|
||||
rtems_task Init(rtems_task_argument argument);
|
||||
|
||||
rtems_task Init(
|
||||
rtems_task_argument ignored
|
||||
)
|
||||
static void *Init( uintptr_t ignored )
|
||||
{
|
||||
/* initialize application */
|
||||
|
||||
/* Real application would call idle loop functionality */
|
||||
|
||||
/* but in this case, just return and fall into a fatal error */
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* configuration information */
|
||||
@@ -98,7 +95,7 @@ rtems_task Init(
|
||||
* In this application, the initialization task performs the system
|
||||
* initialization and then transforms itself into the idle task.
|
||||
*/
|
||||
#define CONFIGURE_IDLE_TASK_BODY (Thread_Entry_numeric) Init
|
||||
#define CONFIGURE_IDLE_TASK_BODY Init
|
||||
#define CONFIGURE_IDLE_TASK_INITIALIZES_APPLICATION
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user