source: rtems/cpukit/score/src/schedulerdefaultnodedestroy.c @ 2548d14

5
Last change on this file since 2548d14 was df2177ab, checked in by Sebastian Huber <sebastian.huber@…>, on 07/01/16 at 12:47:07

score: Change scheduler node init and destroy

Provide the scheduler node to initialize or destroy to the corresponding
operations. This makes it possible to have more than one scheduler node
per thread.

  • Property mode set to 100644
File size: 584 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  Scheduler_Node          *node
27)
28{
29  (void) scheduler;
30  (void) node;
31}
Note: See TracBrowser for help on using the repository browser.