source: rtems/testsuites/samples/pppd/init.c @ 3324383c

4.115
Last change on this file since 3324383c was 3324383c, checked in by Joel Sherrill <joel.sherrill@…>, on 05/05/14 at 14:47:30

testsuites: Remove BSP_SMALL_MEMORY

  • Property mode set to 100644
File size: 751 bytes
RevLine 
[5f0cd34]1/*
2 *  COPYRIGHT (c) 1989-2012.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
[c499856]7 *  http://www.rtems.org/license/LICENSE.
[5f0cd34]8 */
9
[e313551]10#ifdef HAVE_CONFIG_H
11#include "config.h"
12#endif
13
[478bb1e6]14#include <stdio.h>
15#include <stdlib.h>
16#include <string.h>
17
18#define CONFIGURE_INIT
19#include "system.h"
20
[c0ec0d82]21#include <rtems/rtems_bsdnet.h>
22#include <rtems/rtemspppd.h>
23#include "netconfig.h"
[478bb1e6]24
[9391f6d]25const char rtems_test_name[] = "PPPD";
26
[478bb1e6]27rtems_task Init(rtems_task_argument argument)
28{
[9391f6d]29  rtems_test_begin();
30
[478bb1e6]31  /* initialize network */
32  rtems_bsdnet_initialize_network();
33  rtems_pppd_initialize();
34  pppdapp_initialize();
35  rtems_task_delete(RTEMS_SELF);
36}
Note: See TracBrowser for help on using the repository browser.