summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/schedulerpriority.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-08-07 11:33:17 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-08-08 14:11:22 +0200
commit037cfd17b95a683f1d204209b5a2ec6ee342ef6d (patch)
tree89c0f5790cd54c6f5e408a2624bb2a94e5e642a3 /cpukit/score/include/rtems/score/schedulerpriority.h
parentPR766: Delete __RTEMS_VIOLATE_KERNEL_VISIBILITY__ (diff)
downloadrtems-037cfd17b95a683f1d204209b5a2ec6ee342ef6d.tar.bz2
score: Rename _Scheduler_priority_Release_job()
Rename _Scheduler_priority_Release_job() into _Scheduler_default_Release_job().
Diffstat (limited to 'cpukit/score/include/rtems/score/schedulerpriority.h')
-rw-r--r--cpukit/score/include/rtems/score/schedulerpriority.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/cpukit/score/include/rtems/score/schedulerpriority.h b/cpukit/score/include/rtems/score/schedulerpriority.h
index 862f9e1c7d..69649435bd 100644
--- a/cpukit/score/include/rtems/score/schedulerpriority.h
+++ b/cpukit/score/include/rtems/score/schedulerpriority.h
@@ -51,7 +51,7 @@ extern "C" {
_Scheduler_priority_Enqueue_first, /* enqueue_first entry point */ \
_Scheduler_priority_Extract, /* extract entry point */ \
_Scheduler_priority_Priority_compare, /* compares two priorities */ \
- _Scheduler_priority_Release_job, /* new period of task */ \
+ _Scheduler_default_Release_job, /* new period of task */ \
_Scheduler_default_Tick, /* tick entry point */ \
_Scheduler_default_Start_idle /* start idle entry point */ \
}
@@ -211,20 +211,6 @@ int _Scheduler_priority_Priority_compare(
Priority_Control p2
);
-/**
- * @brief Called when a new job of task is released.
- *
- * This routine is called when a new job of task is released.
- *
- * @param[in] the_thread is the owner of the job.
- * @param[in] deadline of the new job from now. If equal to 0,
- * the job was cancelled or deleted.
- */
-void _Scheduler_priority_Release_job (
- Thread_Control *the_thread,
- uint32_t deadline
-);
-
/**@}*/
#ifdef __cplusplus