source: rtems/cpukit/posix/src/psxsemaphore.c @ 55b69ed

5
Last change on this file since 55b69ed was 242887bc, checked in by Sebastian Huber <sebastian.huber@…>, on 09/13/18 at 04:19:05

Rename files to make them unique within cpukit

This allows to build librtemscpu.a in one rush in the future.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1/**
2 * @file
3 *
4 * @brief POSIX Function Initializes Semaphore Manager
5 * @ingroup POSIXAPI
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2008.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.org/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems/posix/semaphoreimpl.h>
22#include <rtems/config.h>
23#include <rtems/sysinit.h>
24
25#include <limits.h>
26
27Objects_Information _POSIX_Semaphore_Information;
28
29/*
30 *  _POSIX_Semaphore_Manager_initialization
31 *
32 *  This routine initializes all semaphore manager related data structures.
33 *
34 *  Input parameters:   NONE
35 *
36 *  Output parameters:  NONE
37 */
38
39static void _POSIX_Semaphore_Manager_initialization(void)
40{
41  _Objects_Initialize_information(
42    &_POSIX_Semaphore_Information, /* object information table */
43    OBJECTS_POSIX_API,          /* object API */
44    OBJECTS_POSIX_SEMAPHORES,   /* object class */
45    Configuration_POSIX_API.maximum_semaphores,
46                                /* maximum objects of this class */
47    sizeof( POSIX_Semaphore_Control ),
48                                /* size of this object's control block */
49    true,                       /* true if names for this object are strings */
50    _POSIX_PATH_MAX,            /* maximum length of each object's name */
51    NULL                        /* Proxy extraction support callout */
52  );
53}
54
55RTEMS_SYSINIT_ITEM(
56  _POSIX_Semaphore_Manager_initialization,
57  RTEMS_SYSINIT_POSIX_SEMAPHORE,
58  RTEMS_SYSINIT_ORDER_MIDDLE
59);
Note: See TracBrowser for help on using the repository browser.