source: rtems/testsuites/psxtmtests/psxtmkey01/init.c @ 8fbe2e6

4.115
Last change on this file since 8fbe2e6 was 8fbe2e6, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/14 at 13:59:49

Use correct prototype of benchmark_timer_read()

This change starts with removing the effectively empty file
timerdrv.h. The prototypes for benchmark_timer_XXX() were in
btimer.h which was not universally used. Thus every use of
timerdrv.h had to be changed to btimer.h. Then the prototypes
for benchmark_timer_read() had to be adjusted to return
benchmark_timer_t rather than int or uint32_t.

I took this opportunity to also correct the file headers to
separate the copyright from the file description comments which
is needed to ensure the copyright isn't propagated into Doxygen
output.

  • Property mode set to 100644
File size: 1.8 KB
Line 
1/*
2 *  COPYRIGHT (c) 1989-2013.
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
7 *  http://www.rtems.org/license/LICENSE.
8 */
9
10#ifdef HAVE_CONFIG_H
11#include "config.h"
12#endif
13
14#include <timesys.h>
15#include <rtems/btimer.h>
16#include <errno.h>
17#include <pthread.h>
18#include "test_support.h"
19
20const char rtems_test_name[] = "PSXTMKEY 01";
21
22/* forward declarations to avoid warnings */
23void *POSIX_Init(void *argument);
24
25pthread_key_t Key;
26
27static void benchmark_pthread_key_create(void)
28{
29  benchmark_timer_t end_time;
30  int  status;
31
32  benchmark_timer_initialize();
33    status = pthread_key_create(&Key, NULL);
34  end_time = benchmark_timer_read();
35  rtems_test_assert( status == 0 );
36
37  put_time(
38    "pthread_key_create: only case",
39    end_time,
40    1,        /* Only executed once */
41    0,
42    0
43  );
44
45}
46
47static void benchmark_pthread_key_delete(void)
48{
49  benchmark_timer_t end_time;
50  int  status;
51
52  benchmark_timer_initialize();
53    status = pthread_key_delete(Key);
54  end_time = benchmark_timer_read();
55  rtems_test_assert( status == 0 );
56
57  put_time(
58    "pthread_key_delete: only case",
59    end_time,
60    1,        /* Only executed once */
61    0,
62    0
63  );
64
65}
66
67void *POSIX_Init(void *argument)
68{
69
70  TEST_BEGIN();
71
72  /*key creation, using NULL destructor*/
73  benchmark_pthread_key_create();
74 
75  /* key deletion*/
76  benchmark_pthread_key_delete();
77 
78  TEST_END();
79
80  rtems_test_exit(0);
81}
82
83/* configuration information */
84
85#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
86#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER
87
88#define CONFIGURE_MAXIMUM_POSIX_THREADS     2
89#define CONFIGURE_MAXIMUM_POSIX_KEYS     1
90#define CONFIGURE_POSIX_INIT_THREAD_TABLE
91
92#define CONFIGURE_INIT
93
94#include <rtems/confdefs.h>
95/* end of file */
Note: See TracBrowser for help on using the repository browser.