source: rtems/testsuites/libtests/debugger01/system.h @ a0d4e99

5
Last change on this file since a0d4e99 was a0d4e99, checked in by Chris Johns <chrisj@…>, on 11/25/16 at 04:13:36

cpukit: Add libdebugger, a remote debugger agent for GDB.

  • Property mode set to 100644
File size: 919 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 *  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.org/license/LICENSE.
12 */
13
14#include <bsp.h>
15#include <tmacros.h>
16
17/* functions */
18
19rtems_task Init(rtems_task_argument argument);
20
21int rtems_debugger_register_test_remote(void);
22void test_wake(void);
23
24/* configuration information */
25
26#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
27#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
28
29#define CONFIGURE_MAXIMUM_USER_EXTENSIONS     1
30#define CONFIGURE_MAXIMUM_TASKS               10
31#define CONFIGURE_MAXIMUM_SEMAPHORES          10
32
33#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
34
35#include <rtems/confdefs.h>
36
37/* end of include file */
Note: See TracBrowser for help on using the repository browser.