forked from Imagelibrary/rtems
2011-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* rtems/src/tasks.c: Make _RTEMS_tasks_Create_extension, _RTEMS_tasks_Start_extension, _RTEMS_tasks_Delete_extension, _RTEMS_tasks_Switch_extension, _RTEMS_tasks_Post_switch_extension static. * score/src/scheduleredf.c: Make _Scheduler_EDF_RBTree_compare_function static.
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
2011-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* rtems/src/tasks.c: Make _RTEMS_tasks_Create_extension,
|
||||
_RTEMS_tasks_Start_extension, _RTEMS_tasks_Delete_extension,
|
||||
_RTEMS_tasks_Switch_extension, _RTEMS_tasks_Post_switch_extension
|
||||
static.
|
||||
* score/src/scheduleredf.c: Make _Scheduler_EDF_RBTree_compare_function
|
||||
static.
|
||||
|
||||
2011-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* libfs/src/imfs/imfs_eval.c: Make IMFS_evaluate_permission,
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
* area.
|
||||
*/
|
||||
|
||||
bool _RTEMS_tasks_Create_extension(
|
||||
static bool _RTEMS_tasks_Create_extension(
|
||||
Thread_Control *executing,
|
||||
Thread_Control *created
|
||||
)
|
||||
@@ -86,7 +86,7 @@ bool _RTEMS_tasks_Create_extension(
|
||||
* first time.
|
||||
*/
|
||||
|
||||
void _RTEMS_tasks_Start_extension(
|
||||
static void _RTEMS_tasks_Start_extension(
|
||||
Thread_Control *executing,
|
||||
Thread_Control *started
|
||||
)
|
||||
@@ -104,7 +104,7 @@ void _RTEMS_tasks_Start_extension(
|
||||
* This extension routine is invoked when a task is deleted.
|
||||
*/
|
||||
|
||||
void _RTEMS_tasks_Delete_extension(
|
||||
static void _RTEMS_tasks_Delete_extension(
|
||||
Thread_Control *executing,
|
||||
Thread_Control *deleted
|
||||
)
|
||||
@@ -137,7 +137,7 @@ void _RTEMS_tasks_Delete_extension(
|
||||
* This extension routine is invoked at each context switch.
|
||||
*/
|
||||
|
||||
void _RTEMS_tasks_Switch_extension(
|
||||
static void _RTEMS_tasks_Switch_extension(
|
||||
Thread_Control *executing,
|
||||
Thread_Control *heir
|
||||
)
|
||||
@@ -169,7 +169,7 @@ void _RTEMS_tasks_Switch_extension(
|
||||
* This extension routine is invoked at each context switch.
|
||||
*/
|
||||
|
||||
void _RTEMS_tasks_Post_switch_extension(
|
||||
static void _RTEMS_tasks_Post_switch_extension(
|
||||
Thread_Control *executing
|
||||
)
|
||||
{
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
#include <rtems/score/scheduler.h>
|
||||
#include <rtems/score/scheduleredf.h>
|
||||
|
||||
int _Scheduler_EDF_RBTree_compare_function
|
||||
static int _Scheduler_EDF_RBTree_compare_function
|
||||
(
|
||||
RBTree_Node* n1,
|
||||
RBTree_Node* n2
|
||||
|
||||
Reference in New Issue
Block a user