source: rtems/cpukit/score/src/schedulersmpstartidle.c @ 21275b58

5
Last change on this file since 21275b58 was 34487537, checked in by Sebastian Huber <sebastian.huber@…>, on 07/04/17 at 07:57:30

score: Add simple affinity support to EDF SMP

Update #3059.

  • Property mode set to 100644
File size: 630 bytes
Line 
1/*
2 * Copyright (c) 2013, 2017 embedded brains GmbH.
3 *
4 * The license and distribution terms for this file may be
5 * found in the file LICENSE in this distribution or at
6 * http://www.rtems.org/license/LICENSE.
7 */
8
9#if HAVE_CONFIG_H
10  #include "config.h"
11#endif
12
13#include <rtems/score/schedulersmpimpl.h>
14
15void _Scheduler_SMP_Start_idle(
16  const Scheduler_Control *scheduler,
17  Thread_Control          *idle,
18  Per_CPU_Control         *cpu
19)
20{
21  Scheduler_Context *context = _Scheduler_Get_context( scheduler );
22
23  _Scheduler_SMP_Do_start_idle(
24    context,
25    idle,
26    cpu,
27    _Scheduler_SMP_Do_nothing_register_idle
28  );
29}
Note: See TracBrowser for help on using the repository browser.