source: rtems/testsuites/psxtests/psxualarm/system.h @ b6912c40

4.104.115
Last change on this file since b6912c40 was c3a8293, checked in by Jennifer Averett <Jennifer.Averett@…>, on 12/20/07 at 18:19:15

2007-12-20 Jennifer Averett <jennifer.averett@…>

  • Makefile.am, configure.ac: Added test for ualarm
  • psxualarm/Makefile.am, psxualarm/init.c, psxualarm/psxualarm.scn, psxualarm/system.h: New files.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*  system.h
2 *
3 *  This include file contains information that is included in every
4 *  function in the test set.
5 *
6 *  COPYRIGHT (c) 1989-1999.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.com/license/LICENSE.
12 *
13 *  $Id$
14 */
15
16/* functions */
17
18#include <pmacros.h>
19
20void *POSIX_Init(
21  void *argument
22);
23
24void *Task_1(
25  void *argument
26);
27
28void *Task_2(
29  void *argument
30);
31
32void *Task_3(
33  void *argument
34);
35
36
37/* configuration information */
38
39#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
40#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
41
42#define CONFIGURE_MAXIMUM_POSIX_THREADS        4
43#define CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS 5
44
45#define CONFIGURE_POSIX_INIT_THREAD_TABLE
46#define CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE \
47        (RTEMS_MINIMUM_STACK_SIZE * 4)
48
49#define CONFIGURE_MAXIMUM_TIMERS        1
50
51#include <rtems/confdefs.h>
52
53/* global variables */
54
55#ifdef CONFIGURE_INIT
56#define TEST_EXTERN
57#else
58#define TEST_EXTERN extern
59#endif
60TEST_EXTERN rtems_id   Timer_id[ 1 ];     /* array of timer ids */
61TEST_EXTERN rtems_name Timer_name[ 1 ];   /* array of timer names */
62
63TEST_EXTERN pthread_t        Init_id;
64TEST_EXTERN pthread_t        Task1_id;
65TEST_EXTERN pthread_t        Task2_id;
66TEST_EXTERN pthread_t        Task3_id;
67
68/* end of include file */
Note: See TracBrowser for help on using the repository browser.