source: network-demos/socket/system.h @ f3b4c5a

4.11netdemos-4-5-branchnetwork-demos-4-10-branchnetwork-demos-4-6-branchnetwork-demos-4-7-branchnetwork-demos-4-8-branchnetwork-demos-4-9-branchrtems-4-5-branch
Last change on this file since f3b4c5a was f3b4c5a, checked in by Joel Sherrill <joel.sherrill@…>, on 08/11/98 at 13:31:51

New test from Emmanuel Raguet <raguet@…>.

  • Property mode set to 100644
File size: 1.1 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-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#include <tmacros.h>
18
19/* functions */
20
21rtems_task Init(
22  rtems_task_argument argument
23);
24
25rtems_task testUdpServerSocket(
26  rtems_task_argument argument
27);
28rtems_task testUdpClientSocket(
29  rtems_task_argument argument
30);
31rtems_task testTcpServerSocket(
32  rtems_task_argument argument
33);
34rtems_task testTcpClientSocket(
35  rtems_task_argument argument
36);
37
38/* configuration information */
39
40#define CONFIGURE_SPTEST
41
42#define CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER
43#define CONFIGURE_TEST_NEEDS_CLOCK_DRIVER
44
45#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
46
47#include <confdefs.h>
48
49/* global variables */
50
51TEST_EXTERN rtems_id Global_variable;    /* example global variable     */
52
53/* end of include file */
Note: See TracBrowser for help on using the repository browser.