summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests/psxtmthreadattr01/init.c
blob: 68b7d7d38dde844328e0919e0a3e83524cddc0a2 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
/*
 *  COPYRIGHT (c) 2018.
 *  Himanshu Sekhar Nayak (GCI 2018)
 *
 *  Permission to use, copy, modify, and/or distribute this software
 *  for any purpose with or without fee is hereby granted.
 *
 *  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
 *  WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
 *  WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
 *  BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
 *  OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
 *  WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
 *  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <timesys.h>
#include <rtems/btimer.h>
#include "test_support.h"
#include <tmacros.h>
#include <pthread.h>
#include <timesys.h>
#include <sched.h>

#define GUARDSIZE_TEST_VALUE 512
#define STACKSIZE_TEST_VALUE 1024

const char rtems_test_name[] = "PSXTMTHREADATTR01";

/* forward declarations to avoid warnings */
static void *POSIX_Init(void *argument);

static pthread_attr_t attr;
static size_t guardsize = GUARDSIZE_TEST_VALUE;
static size_t stacksize = STACKSIZE_TEST_VALUE;
static struct sched_param param;
static void *stackaddr;

static void benchmark_create_pthread_attr(void)
{
  benchmark_timer_t end_time;
  int  status;

  benchmark_timer_initialize();
  status = pthread_attr_init(&attr);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );

  put_time(
    "pthread_attr_init: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_pthread_attr_setdetachstate(void)
{
  benchmark_timer_t end_time;
  int  status;

  benchmark_timer_initialize();
  status = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );

  put_time(
    "pthread_attr_setdetachstate: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_pthread_attr_getdetachstate(void)
{
  benchmark_timer_t end_time;
  int  status;
  int detachstate;

  benchmark_timer_initialize();
  status = pthread_attr_getdetachstate(&attr, &detachstate);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );
  rtems_test_assert( detachstate == PTHREAD_CREATE_DETACHED );

  put_time(
    "pthread_attr_getdetachstate: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_pthread_attr_setguardsize(void)
{
  benchmark_timer_t end_time;
  int  status;

  benchmark_timer_initialize();
  status = pthread_attr_setguardsize(&attr, guardsize);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );

  put_time(
    "pthread_attr_setguardsize: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_pthread_attr_getguardsize(void)
{
  benchmark_timer_t end_time;
  int  status;
  size_t tmp_guardsize;

  benchmark_timer_initialize();
  status = pthread_attr_getguardsize(&attr, &tmp_guardsize);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );
  rtems_test_assert( tmp_guardsize == guardsize );

  put_time(
    "pthread_attr_getguardsize: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_pthread_attr_setinheritsched(void)
{
  benchmark_timer_t end_time;
  int  status;

  benchmark_timer_initialize();
  status = pthread_attr_setinheritsched(&attr, PTHREAD_EXPLICIT_SCHED);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );

  put_time(
    "pthread_attr_setinheritsched: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_pthread_attr_getinheritsched(void)
{
  benchmark_timer_t end_time;
  int  status;
  int inheritsched;

  benchmark_timer_initialize();
  status = pthread_attr_getinheritsched(&attr, &inheritsched);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );
  rtems_test_assert( inheritsched == PTHREAD_EXPLICIT_SCHED );

  put_time(
    "pthread_attr_getinheritsched: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_pthread_attr_setschedparam(void)
{
  benchmark_timer_t end_time;
  int  status;

  status = pthread_attr_setschedparam(&attr, &param);
  rtems_test_assert( status == 0 );
  param.sched_priority = sched_get_priority_min( SCHED_RR ) + 2;
  benchmark_timer_initialize();
  status = pthread_attr_setschedparam(&attr, &param);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );

  put_time(
    "pthread_attr_setschedparam: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_pthread_attr_getschedparam(void)
{
  benchmark_timer_t end_time;
  int  status;
  struct sched_param tmp_param;

  status = pthread_attr_getschedparam(&attr, &tmp_param);
  rtems_test_assert( status == 0 );
  tmp_param.sched_priority = sched_get_priority_min( SCHED_RR ) + 2;
  benchmark_timer_initialize();
  status = pthread_attr_getschedparam(&attr, &tmp_param);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );
  rtems_test_assert( tmp_param.sched_priority == param.sched_priority );

  put_time(
    "pthread_attr_getschedparam: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_pthread_attr_setschedpolicy(void)
{
  benchmark_timer_t end_time;
  int  status;

  benchmark_timer_initialize();
  status = pthread_attr_setschedpolicy(&attr, SCHED_RR);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );

  put_time(
    "pthread_attr_setschedpolicy: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_pthread_attr_getschedpolicy(void)
{
  benchmark_timer_t end_time;
  int  status;
  int policy;

  benchmark_timer_initialize();
  status = pthread_attr_getschedpolicy(&attr, &policy);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );
  rtems_test_assert( policy == SCHED_RR );

  put_time(
    "pthread_attr_getschedpolicy: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_pthread_attr_setscope(void)
{
  benchmark_timer_t end_time;
  int  status;

  benchmark_timer_initialize();
  status = pthread_attr_setscope(&attr, PTHREAD_SCOPE_PROCESS);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );

  put_time(
    "pthread_attr_setscope: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_pthread_attr_getscope(void)
{
  benchmark_timer_t end_time;
  int  status;
  int scope;

  benchmark_timer_initialize();
  status = pthread_attr_getscope(&attr, &scope);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );
  rtems_test_assert( scope == PTHREAD_SCOPE_PROCESS );

  put_time(
    "pthread_attr_getscope: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_pthread_attr_setstack(void)
{
  benchmark_timer_t end_time;
  int  status;

  benchmark_timer_initialize();
  status = pthread_attr_setstack(&attr, stackaddr, stacksize);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );

  put_time(
    "pthread_attr_setstack: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_pthread_attr_getstack(void)
{
  benchmark_timer_t end_time;
  int  status;
  size_t tmp_stacksize;

  benchmark_timer_initialize();
  status = pthread_attr_getstack(&attr, &stackaddr, &tmp_stacksize);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );
  rtems_test_assert(tmp_stacksize == stacksize);

  put_time(
    "pthread_attr_getstack: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void benchmark_destroy_pthread_attr(void)
{
  benchmark_timer_t end_time;
  int  status;

  benchmark_timer_initialize();
  status = pthread_attr_destroy(&attr);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );

  put_time(
    "pthread_attr_destroy: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );

}

static void *POSIX_Init(
  void *argument
)
{
  TEST_BEGIN();

  benchmark_create_pthread_attr();
  benchmark_pthread_attr_setdetachstate();
  benchmark_pthread_attr_getdetachstate();
  benchmark_pthread_attr_setguardsize();
  benchmark_pthread_attr_getguardsize();
  benchmark_pthread_attr_setinheritsched();
  benchmark_pthread_attr_getinheritsched();
  benchmark_pthread_attr_setschedparam();
  benchmark_pthread_attr_getschedparam();
  benchmark_pthread_attr_setschedpolicy();
  benchmark_pthread_attr_getschedpolicy();
  benchmark_pthread_attr_setscope();
  benchmark_pthread_attr_getscope();
  benchmark_pthread_attr_setstack();
  benchmark_pthread_attr_getstack();
  benchmark_destroy_pthread_attr();

  TEST_END();
  rtems_test_exit(0);
}

/* configuration information */

#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER

/* configure an instance of the object created/destroyed */

#define CONFIGURE_MAXIMUM_POSIX_THREADS     1
#define CONFIGURE_POSIX_INIT_THREAD_TABLE

#define CONFIGURE_INIT

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