source: rtems/testsuites/benchmarks/whetstone/init.c @ 0027682

5
Last change on this file since 0027682 was 0027682, checked in by Sebastian Huber <sebastian.huber@…>, on 03/28/17 at 11:11:22

benchmarks: Add benchmark templates

Update #2958.

  • Property mode set to 100644
File size: 893 bytes
Line 
1/*
2 * Copyright (c) 2017 embedded brains GmbH.  All rights reserved.
3 *
4 *  embedded brains GmbH
5 *  Dornierstr. 4
6 *  82178 Puchheim
7 *  Germany
8 *  <rtems@embedded-brains.de>
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.rtems.org/license/LICENSE.
13 */
14
15#ifdef HAVE_CONFIG_H
16#include "config.h"
17#endif
18
19#include "tmacros.h"
20
21const char rtems_test_name[] = "WHETSTONE";
22
23static void test(void)
24{
25}
26
27static void Init(rtems_task_argument arg)
28{
29  TEST_BEGIN();
30
31  test();
32
33  TEST_END();
34  rtems_test_exit(0);
35}
36
37#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
38#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
39
40#define CONFIGURE_MAXIMUM_TASKS 1
41
42#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
43
44#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
45
46#define CONFIGURE_INIT
47
48#include <rtems/confdefs.h>
Note: See TracBrowser for help on using the repository browser.