summaryrefslogtreecommitdiffstats
path: root/hello/both_hello/test.c
blob: 69dfb1a097af0156e7dcf3042b5fb7f3e5cf1054 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
 *  Simple test program -- simplified version of sample test hello.
 */

#include <bsp.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

long trace_test(int a, unsigned long b, long long c)
{
  printf ("int a=%i, unsigned long b=%u, long long c=%lli\n",
          a, b, c);
  return (long) (a + b);
}

rtems_task hello_init(
  rtems_task_argument ignored
)
{
  printf( "Classic -- Hello World\n" );
  //trace_test(1, 2, 3);
  rtems_task_delete( RTEMS_SELF );
}

#define CONFIGURE_INIT_TASK_ENTRY_POINT hello_init

int main(int argc, char** argv)
{
  hello_init(0);
}

void *POSIX_Init(
  void *argument
)
{
  printf( "POSIX -- Hello World\n" );
  sleep( 1 );
  //trace_test(1, 2, 3);
  exit( 0 );
}

/* configuration information */

#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER

#define CONFIGURE_POSIX_INIT_THREAD_TABLE
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE

#define CONFIGURE_MAXIMUM_TASKS 1
#define CONFIGURE_MAXIMUM_POSIX_THREADS 1

#define CONFIGURE_INIT
#include <rtems/confdefs.h>
/* end of file */