source: rtems/c/src/exec/posix/include/rtems/posix/config.h @ f2422aa

4.104.114.84.95
Last change on this file since f2422aa was f2422aa, checked in by Joel Sherrill <joel.sherrill@…>, on 11/02/99 at 15:26:46

Added message queues and semaphores.

  • Property mode set to 100644
File size: 1.8 KB
Line 
1/*  config.h
2 *
3 *  This include file contains the table of user defined configuration
4 *  parameters specific for the POSIX API.
5 *
6 *  COPYRIGHT (c) 1989-1998.
7 *  On-Line Applications Research Corporation (OAR).
8 *  Copyright assigned to U.S. Government, 1994.
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.OARcorp.com/rtems/license.html.
13 *
14 *  $Id$
15 */
16
17#ifndef __RTEMS_POSIX_CONFIGURATION_h
18#define __RTEMS_POSIX_CONFIGURATION_h
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24/*
25 *  XXX
26 *
27 *  The following records define the Configuration Table.  The
28 *  information contained in this table is required in all
29 *  RTEMS systems, whether single or multiprocessor.  This
30 *  table primarily defines the following:
31 *
32 *     + required number of each object type
33 */
34
35/*
36 *  For now, we are only allowing the user to specify the entry point
37 *  and stack size for POSIX initialization threads.
38 */
39
40typedef struct {
41  void       *(*thread_entry)(void *);
42  int       stack_size;
43} posix_initialization_threads_table;
44
45typedef struct {
46  int                                 maximum_threads;
47  int                                 maximum_mutexes;
48  int                                 maximum_condition_variables;
49  int                                 maximum_keys;
50  int                                 maximum_timers;
51  int                                 maximum_queued_signals;
52  int                                 maximum_message_queues;
53  int                                 maximum_semaphores;
54  int                                 number_of_initialization_threads;
55  posix_initialization_threads_table *User_initialization_threads_table;
56} posix_api_configuration_table;
57
58#ifdef __cplusplus
59}
60#endif
61
62#endif
63/* end of include file */
Note: See TracBrowser for help on using the repository browser.