source: rtems/testsuites/psxtests/psxkey01/system.h @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/**
2 *  @file
3 *
4 *  This include file contains information that is included in every
5 *  function in the test set.
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2014.
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/* functions */
18
19#include <pmacros.h>
20
21/* configuration information */
22
23#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
24#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
25
26#define CONFIGURE_MAXIMUM_TASKS          1
27#define CONFIGURE_MAXIMUM_POSIX_KEYS     1
28
29#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
30
31#include <rtems/confdefs.h>
32
33/* global variables */
34
35#ifdef CONFIGURE_INIT
36#define TEST_EXTERN
37#else
38#define TEST_EXTERN extern
39#endif
40
41TEST_EXTERN pthread_t        Init_id;
42TEST_EXTERN pthread_key_t    Key_id[CONFIGURE_MAXIMUM_POSIX_KEYS - 1];
43TEST_EXTERN uint32_t         Data_array[ CONFIGURE_MAXIMUM_TASKS ];
44
45#undef TEST_EXTERN
46/* end of include file */
Note: See TracBrowser for help on using the repository browser.