source: rtems/c/src/optman/rtems/no-sem.c @ 45c4499e

4.104.115
Last change on this file since 45c4499e was 45c4499e, checked in by Joel Sherrill <joel.sherrill@…>, on 12/17/08 at 20:25:43

2008-12-17 Joel Sherrill <joel.sherrill@…>

  • optman/rtems/no-barrier.c, optman/rtems/no-dpmem.c, optman/rtems/no-event.c, optman/rtems/no-mp.c, optman/rtems/no-msg.c, optman/rtems/no-part.c, optman/rtems/no-region.c, optman/rtems/no-rtmon.c, optman/rtems/no-sem.c, optman/rtems/no-signal.c, optman/rtems/no-timer.c: Convert manager initialization routines to directly pull parameters from configuration table. Eliminate empty routines sportted.
  • Property mode set to 100644
File size: 683 bytes
Line 
1/*
2 *  Semaphore Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989-2008.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
16#include <rtems/rtems/status.h>
17#include <rtems/rtems/attr.h>
18#include <rtems/score/isr.h>
19#include <rtems/score/object.h>
20#include <rtems/rtems/options.h>
21#include <rtems/rtems/sem.h>
22#include <rtems/score/states.h>
23#include <rtems/score/thread.h>
24#include <rtems/score/threadq.h>
25#include <rtems/score/interr.h>
26
27void _Semaphore_Manager_initialization(void)
28{
29}
30
Note: See TracBrowser for help on using the repository browser.