source: rtems/testsuites/psxtmtests/psxtmbarrierattr01/init.c @ 4f3a253

5
Last change on this file since 4f3a253 was 4f3a253, checked in by Sebastian Huber <sebastian.huber@…>, on 01/28/19 at 13:16:39

psxtmtests: Fix format warnings

Update #3384.

  • Property mode set to 100644
File size: 3.9 KB
Line 
1/*
2 * SPDX-License-Identifier: BSD-2-Clause
3 *
4 * Copyright (C) 2018, Himanshu Sekhar Nayak
5 *
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.
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[] = "PSXTMBARRIERATTR01";
39
40/* forward declarations to avoid warnings */
41static void *POSIX_Init(void *argument);
42
43static pthread_barrierattr_t attr;
44
45static void benchmark_create_barrierattr(void)
46{
47  benchmark_timer_t end_time;
48  int               status;
49
50  benchmark_timer_initialize();
51  status = pthread_barrierattr_init( &attr );
52  end_time = benchmark_timer_read();
53  rtems_test_assert( status == 0 );
54
55  put_time(
56    "pthread_barrierattr_init: only case",
57    end_time,
58    1,        /* Only executed once */
59    0,
60    0
61  );
62
63}
64
65static void benchmark_barrierattr_setpshared(void)
66{
67  benchmark_timer_t end_time;
68  int               status;
69
70  benchmark_timer_initialize();
71  status = pthread_barrierattr_setpshared( &attr, PTHREAD_PROCESS_SHARED );
72  end_time = benchmark_timer_read();
73  rtems_test_assert( status == 0 );
74
75  put_time(
76    "pthread_barrierattr_setpshared: only case",
77    end_time,
78    1,        /* Only executed once */
79    0,
80    0
81  );
82
83}
84
85static void benchmark_barrierattr_getpshared(void)
86{
87  benchmark_timer_t end_time;
88  int               status;
89  int               pshared;
90
91  benchmark_timer_initialize();
92  status = pthread_barrierattr_getpshared( &attr, &pshared );
93  end_time = benchmark_timer_read();
94  rtems_test_assert( status == 0 );
95  rtems_test_assert( pshared == PTHREAD_PROCESS_SHARED );
96
97  put_time(
98    "pthread_barrierattr_getpshared: only case",
99    end_time,
100    1,        /* Only executed once */
101    0,
102    0
103  );
104
105}
106
107static void benchmark_destroy_barrierattr(void)
108{
109  benchmark_timer_t end_time;
110  int               status;
111
112  benchmark_timer_initialize();
113  status = pthread_barrierattr_destroy( &attr );
114  end_time = benchmark_timer_read();
115  rtems_test_assert( status == 0 );
116
117  put_time(
118    "pthread_barrierattr_destroy: only case",
119    end_time,
120    1,        /* Only executed once */
121    0,
122    0
123  );
124
125}
126
127static void *POSIX_Init(
128  void *argument
129)
130{
131
132  TEST_BEGIN();
133
134  benchmark_create_barrierattr();
135  benchmark_barrierattr_setpshared();
136  benchmark_barrierattr_getpshared();
137  benchmark_destroy_barrierattr();
138
139  TEST_END();
140  rtems_test_exit(0);
141}
142
143/* configuration information */
144
145#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
146#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER
147
148#define CONFIGURE_MAXIMUM_POSIX_THREADS     1
149#define CONFIGURE_POSIX_INIT_THREAD_TABLE
150
151#define CONFIGURE_INIT
152
153#include <rtems/confdefs.h>
154/* end of file */
Note: See TracBrowser for help on using the repository browser.