source: rtems/testsuites/psxtmtests/psxtmonce01/init.c @ 8f5abea

5
Last change on this file since 8f5abea was 8f5abea, checked in by Himanshu40 <himanshuwindows8.1@…>, on 12/21/18 at 19:47:06

psxtmtests: Changed the copyright license to BSD-2-Clause (GCI 2018)

  • Property mode set to 100644
File size: 2.4 KB
RevLine 
[9bb39516]1/*
[8f5abea]2 * SPDX-License-Identifier: BSD-2-Clause
[9bb39516]3 *
[8f5abea]4 * Copyright (C) 2018, Himanshu Sekhar Nayak
[9bb39516]5 *
[8f5abea]6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
[9bb39516]26 */
27
28#ifdef HAVE_CONFIG_H
29#include "config.h"
30#endif
31
32#include <pthread.h>
33#include <tmacros.h>
34#include <timesys.h>
35#include <rtems/btimer.h>
36#include "test_support.h"
37
38const char rtems_test_name[] = "PSXTMONCE01";
39
[98cc00e6]40static pthread_once_t once_control = PTHREAD_ONCE_INIT;
[9bb39516]41
[98cc00e6]42static void initRoutine(void)
[9bb39516]43{
44}
45
[98cc00e6]46static void benchmark_first_time(void)
[9bb39516]47{
48  long end_time;
49  int  status;
50
51  benchmark_timer_initialize();
52  status = pthread_once( &once_control, initRoutine );
53  end_time = benchmark_timer_read();
54  rtems_test_assert( status == 0 );
55
56  put_time(
57    "pthread_once: first time",
58    end_time,
59    1,        /* Only executed once */
60    0,
61    0
62  );
63}
64
[98cc00e6]65static void *POSIX_Init(
[9bb39516]66  void *argument
67)
68{
69
70  TEST_BEGIN();
71  benchmark_first_time();
72  TEST_END();
73
74  rtems_test_exit(0);
75}
76
77/* configuration information */
78
[98cc00e6]79#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
[9bb39516]80#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER
81
82#define CONFIGURE_MAXIMUM_POSIX_THREADS     1
83#define CONFIGURE_POSIX_INIT_THREAD_TABLE
84
85#define CONFIGURE_INIT
86
87#include <rtems/confdefs.h>
88/* end of file */
Note: See TracBrowser for help on using the repository browser.