source: rtems/testsuites/psxtests/psxtimer02/system.h @ 698c2e50

4.115
Last change on this file since 698c2e50 was 698c2e50, checked in by Sebastian Huber <sebastian.huber@…>, on 03/25/14 at 07:06:16

tests/psxtests: Use <rtems/test.h>

  • Property mode set to 100644
File size: 823 bytes
Line 
1/*  system.h
2 *
3 *  This include file contains information that is included in every
4 *  function in the test set.
5 *
6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
8 *  http://www.rtems.org/license/LICENSE.
9 */
10
11/* functions */
12
13#include <pmacros.h>
14#include <unistd.h>
15#include <errno.h>
16#include <sched.h>
17
18void *POSIX_Init (
19  void *arg
20);
21
22/* configuration information */
23
24#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
25#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
26
27#define CONFIGURE_POSIX_INIT_THREAD_TABLE
28
29#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
30
31#define CONFIGURE_MAXIMUM_POSIX_THREADS             1
32#define CONFIGURE_MAXIMUM_POSIX_TIMERS              1
33
34
35#include <rtems/confdefs.h>
36
37/* end of include file */
Note: See TracBrowser for help on using the repository browser.