source: network-demos/dnstest/init.c @ 7ba2ac5

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 7ba2ac5 was 7ba2ac5, checked in by Joel Sherrill <joel.sherrill@…>, on 08/21/98 at 13:26:06

Added CVS Id Strings which were missing

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 * RTEMS configuration/initialization
3 *
4 * This program may be distributed and used for any purpose.
5 * I ask only that you:
6 *      1. Leave this author information intact.
7 *      2. Document any changes you make.
8 *
9 * W. Eric Norum
10 * Saskatchewan Accelerator Laboratory
11 * University of Saskatchewan
12 * Saskatoon, Saskatchewan, CANADA
13 * eric@skatter.usask.ca
14 *
15 *  $Id$
16 */
17
18#include <bsp.h>
19
20#define CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER
21#define CONFIGURE_TEST_NEEDS_CLOCK_DRIVER
22#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
23
24#define CONFIGURE_EXECUTIVE_RAM_SIZE    (512*1024)
25#define CONFIGURE_MAXIMUM_SEMAPHORES    20
26#define CONFIGURE_MAXIMUM_TASKS         20
27
28#define CONFIGURE_MICROSECONDS_PER_TICK 10486
29
30#define CONFIGURE_INIT_TASK_STACK_SIZE  (10*1024)
31#define CONFIGURE_INIT_TASK_PRIORITY    100
32#define CONFIGURE_INIT_TASK_INITIAL_MODES (RTEMS_PREEMPT | \
33                                           RTEMS_NO_TIMESLICE | \
34                                           RTEMS_NO_ASR | \
35                                           RTEMS_INTERRUPT_LEVEL(0))
36
37#define CONFIGURE_INIT
38rtems_task Init (rtems_task_argument argument);
39
40#include <confdefs.h>
41
42#include <stdio.h>
43#include <rtems/rtems_bsdnet.h>
44#include "../networkconfig.h"
45
46/*
47 * RTEMS Startup Task
48 */
49rtems_task
50Init (rtems_task_argument ignored)
51{
52        void testDNS(void);
53
54        rtems_bsdnet_initialize_network ();
55        testDNS ();
56        exit (0);
57}
58
Note: See TracBrowser for help on using the repository browser.