source: rtems/cpukit/score/src/schedulerdefaultnodedestroy.c @ dafa5d88

5
Last change on this file since dafa5d88 was 8e467384, checked in by Sebastian Huber <sebastian.huber@…>, on 06/03/14 at 08:29:30

score: Replace _Scheduler_Allocate/Free()

Replace _Scheduler_Allocate() with _Scheduler_Node_initialize(). Remove
the return status and thus the node initialization must be always
successful.

Rename _Scheduler_Free() to _Scheduler_Node_destroy().

  • Property mode set to 100644
File size: 596 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Scheduler Default Node Destruction Operation
5 *
6 * @ingroup ScoreScheduler
7 */
8
9/*
10 *  COPYRIGHT (c) 2011.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#if HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#include <rtems/score/scheduler.h>
23
24void _Scheduler_default_Node_destroy(
25  const Scheduler_Control *scheduler,
26  Thread_Control          *the_thread
27)
28{
29  (void) scheduler;
30  (void) the_thread;
31}
Note: See TracBrowser for help on using the repository browser.