source: rtems/cpukit/score/src/threadenabledispatch.c @ 469dc47

5
Last change on this file since 469dc47 was d2ffb7dc, checked in by Sebastian Huber <sebastian.huber@…>, on 02/26/15 at 10:35:28

score: Add and use _Thread_Enable_dispatch_body()

Update #2273.

  • Property mode set to 100644
File size: 600 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Enable Dispatching of Threads
5 *
6 * @ingroup ScoreThread
7 */
8
9/*
10 *   _Thread_Enable_dispatch
11 *
12 *
13 *  COPYRIGHT (c) 1989-2011.
14 *  On-Line Applications Research Corporation (OAR).
15 *
16 *  The license and distribution terms for this file may be
17 *  found in the file LICENSE in this distribution or at
18 *  http://www.rtems.org/license/LICENSE.
19 */
20
21#if HAVE_CONFIG_H
22#include "config.h"
23#endif
24
25#include <rtems/score/threaddispatch.h>
26
27#if defined (__THREAD_DO_NOT_INLINE_ENABLE_DISPATCH__ )
28void _Thread_Enable_dispatch( void )
29{
30  _Thread_Enable_dispatch_body();
31}
32#endif
Note: See TracBrowser for help on using the repository browser.