-
Notifications
You must be signed in to change notification settings - Fork 924
Expand file tree
/
Copy paththreadx_mutex_basic_test.c
More file actions
767 lines (554 loc) · 17.3 KB
/
threadx_mutex_basic_test.c
File metadata and controls
767 lines (554 loc) · 17.3 KB
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
/* This test is designed to test the mutex create/delete and immediate
return gets and puts. */
#include <stdio.h>
#include "tx_api.h"
#include "tx_mutex.h"
typedef struct MUTEX_MEMORY_TEST_STRUCT
{
ULONG first;
ULONG second;
TX_MUTEX mutex;
ULONG next_to_last;
ULONG last;
} MUTEX_MEMORY_TEST;
static MUTEX_MEMORY_TEST mutex_memory;
/* Define the ISR dispatch. */
extern VOID (*test_isr_dispatch)(void);
static unsigned long thread_0_counter = 0;
static unsigned long thread_1_counter = 0;
static TX_THREAD thread_0;
static TX_THREAD thread_1;
static TX_THREAD thread_2;
static TX_THREAD thread_3;
static TX_THREAD thread_4;
static TX_MUTEX mutex_0;
static TX_MUTEX mutex_1;
static TX_MUTEX mutex_2;
static TX_MUTEX mutex_3;
static TX_MUTEX mutex_4;
static TX_MUTEX mutex_5;
static TX_MUTEX mutex_6;
static TX_MUTEX mutex_7;
static TX_MUTEX mutex_8;
static TX_TIMER timer_0;
static unsigned long error = 0;
static unsigned long timer_executed = 0;
static unsigned long isr_executed = 0;
/* Define thread prototypes. */
static void thread_0_entry(ULONG thread_input);
static void thread_1_entry(ULONG thread_input);
static void thread_2_entry(ULONG thread_input);
static void thread_3_entry(ULONG thread_input);
static void thread_4_entry(ULONG thread_input);
UINT _txe_mutex_create(TX_MUTEX *mutex_ptr, const CHAR *name_ptr, UINT inherit, UINT mutex_control_block_size);
/* Prototype for test control return. */
void test_control_return(UINT status);
/* Define the timer for this test. */
static void timer_entry(ULONG i)
{
#ifndef TX_DISABLE_ERROR_CHECKING
UINT status;
/* Attempt to create a mutex from a timer. */
status = tx_mutex_create(&mutex_4, "mutex 4", TX_NO_INHERIT);
/* Check status. */
if (status != TX_CALLER_ERROR)
{
/* Error! */
error++;
}
/* Attempt to delete a mutex from a timer. */
status = tx_mutex_delete(&mutex_2);
/* Check status. */
if (status != TX_CALLER_ERROR)
{
/* Error! */
error++;
}
/* Attempt to get from mutex from a timer with suspension. */
status = tx_mutex_get(&mutex_2, 100);
/* Check status. */
if (status != TX_WAIT_ERROR)
{
/* Error! */
error++;
}
timer_executed = 1;
#endif
}
/* Define the ISR dispatch routine. */
static void test_isr(void)
{
#ifndef TX_DISABLE_ERROR_CHECKING
UINT status;
/* Attempt to create a mutex from an ISR. */
status = tx_mutex_create(&mutex_4, "mutex 4", TX_NO_INHERIT);
/* Check status. */
if (status != TX_CALLER_ERROR)
{
/* Error! */
error++;
}
/* Attempt to delete a mutex from an ISR. */
status = tx_mutex_delete(&mutex_2);
/* Check status. */
if (status != TX_CALLER_ERROR)
{
/* Error! */
error++;
}
/* Attempt to get from mutex from an ISR with suspension. */
status = tx_mutex_get(&mutex_2, 100);
/* Check status. */
if (status != TX_WAIT_ERROR)
{
/* Error! */
error++;
}
/* Attempt to get from mutex from an ISR without suspension. */
status = tx_mutex_get(&mutex_2, TX_NO_WAIT);
/* Check status. */
if (status != TX_CALLER_ERROR)
{
/* Error! */
error++;
}
/* Attempt to put a mutex from an ISR. */
status = tx_mutex_put(&mutex_2);
/* Check status. */
if (status != TX_CALLER_ERROR)
{
/* Error! */
error++;
}
isr_executed = 1;
#endif
}
/* Define what the initial system looks like. */
#ifdef CTEST
void test_application_define(void *first_unused_memory)
#else
void threadx_mutex_basic_application_define(void *first_unused_memory)
#endif
{
UINT status;
CHAR *pointer;
/* Put first available memory address into a character pointer. */
pointer = (CHAR *) first_unused_memory;
/* Put system definition stuff in here, e.g. thread creates and other assorted
create information. */
status = tx_thread_create(&thread_0, "thread 0", thread_0_entry, 1,
pointer, TEST_STACK_SIZE_PRINTF,
16, 16, TX_NO_TIME_SLICE, TX_AUTO_START);
pointer = pointer + TEST_STACK_SIZE_PRINTF;
status += tx_thread_create(&thread_1, "thread 1", thread_1_entry, 1,
pointer, TEST_STACK_SIZE_PRINTF,
16, 16, TX_NO_TIME_SLICE, TX_AUTO_START);
pointer = pointer + TEST_STACK_SIZE_PRINTF;
status += tx_thread_create(&thread_2, "thread 2", thread_2_entry, 1,
pointer, TEST_STACK_SIZE_PRINTF,
18, 18, TX_NO_TIME_SLICE, TX_DONT_START);
pointer = pointer + TEST_STACK_SIZE_PRINTF;
status += tx_thread_create(&thread_3, "thread 3", thread_3_entry, 1,
pointer, TEST_STACK_SIZE_PRINTF,
18, 18, TX_NO_TIME_SLICE, TX_DONT_START);
pointer = pointer + TEST_STACK_SIZE_PRINTF;
status += tx_thread_create(&thread_4, "thread 4", thread_4_entry, 1,
pointer, TEST_STACK_SIZE_PRINTF,
18, 18, TX_NO_TIME_SLICE, TX_DONT_START);
pointer = pointer + TEST_STACK_SIZE_PRINTF;
/* Check for status. */
if (status != TX_SUCCESS)
{
printf("Running Mutex Basic Test............................................ ERROR #1\n");
test_control_return(1);
}
/* Create a mutex. */
status = tx_mutex_create(&mutex_0, "mutex 0", TX_NO_INHERIT);
/* Check for status. */
if (status != TX_SUCCESS)
{
printf("Running Mutex Basic Test............................................ ERROR #2\n");
test_control_return(1);
}
/* Create another mutex. */
status = tx_mutex_create(&mutex_1, "mutex 1", TX_NO_INHERIT);
/* Check for status. */
if (status != TX_SUCCESS)
{
printf("Running Mutex Basic Test............................................ ERROR #3\n");
test_control_return(1);
}
/* Create another mutex. */
status = tx_mutex_create(&mutex_2, "mutex 2", TX_INHERIT);
/* Check for status. */
if (status != TX_SUCCESS)
{
printf("Running Mutex Basic Test............................................ ERROR #4\n");
test_control_return(1);
}
/* Create another mutex. */
status = tx_mutex_create(&mutex_3, "mutex 3", TX_INHERIT);
/* Check for status. */
if (status != TX_SUCCESS)
{
printf("Running Mutex Basic Test............................................ ERROR #5\n");
test_control_return(1);
}
/* Create another mutex. */
status = tx_mutex_create(&mutex_8, "mutex 8", TX_NO_INHERIT);
/* Check for status. */
if (status != TX_SUCCESS)
{
printf("Running Mutex Basic Test............................................ ERROR #5a\n");
test_control_return(1);
}
}
/* Define the test threads. */
static void thread_0_entry(ULONG thread_input)
{
UINT status;
/* Inform user. */
printf("Running Mutex Basic Test............................................ ");
/* Perform mutex memory test. */
mutex_memory.first = 0x11223344;
mutex_memory.second = 0x55667788;
mutex_memory.next_to_last = 0x99aabbcc;
mutex_memory.last = 0xddeeff00;
/* Create the semaphore. */
status = tx_mutex_create(&mutex_memory.mutex, "mutex memory", TX_INHERIT);
tx_mutex_delete(&mutex_memory.mutex);
/* Check for status. */
if ((status != TX_SUCCESS) ||
(mutex_memory.first != 0x11223344) ||
(mutex_memory.second != 0x55667788) ||
(mutex_memory.next_to_last != 0x99aabbcc) ||
(mutex_memory.last != 0xddeeff00))
{
/* Mutex error. */
printf("ERROR #6\n");
test_control_return(1);
}
/* Increment thread 0 counter. */
thread_0_counter++;
#ifndef TX_DISABLE_ERROR_CHECKING
/* Attempt to create a mutex with a NULL pointer. */
status = tx_mutex_create(TX_NULL, "mutex 2", TX_INHERIT);
/* Check status. */
if (status != TX_MUTEX_ERROR)
{
/* Mutex error. */
printf("ERROR #7\n");
test_control_return(1);
}
/* Attempt to create a mutex with a bad size. */
status = _txe_mutex_create(&mutex_5, "mutex 5", TX_INHERIT, (sizeof(TX_MUTEX)+1));
/* Check status. */
if (status != TX_MUTEX_ERROR)
{
/* Mutex error. */
printf("ERROR #8\n");
test_control_return(1);
}
/* Attempt to create a mutex that has already been created. */
status = tx_mutex_create(&mutex_2, "mutex 2", TX_INHERIT);
/* Check status. */
if (status != TX_MUTEX_ERROR)
{
/* Mutex error. */
printf("ERROR #9\n");
test_control_return(1);
}
/* Attempt to create a mutex with a bad inheritance option. */
status = tx_mutex_create(&mutex_4, "mutex 4", 14);
/* Check status. */
if (status != TX_INHERIT_ERROR)
{
/* Mutex error. */
printf("ERROR #10\n");
test_control_return(1);
}
/* Attempt to delete a mutex with a NULL pointer. */
status = tx_mutex_delete(TX_NULL);
/* Check status. */
if (status != TX_MUTEX_ERROR)
{
/* Mutex error. */
printf("ERROR #11\n");
test_control_return(1);
}
/* Attempt to delete a non-created mutex. */
mutex_4.tx_mutex_id = 0;
status = tx_mutex_delete(&mutex_4);
/* Check status. */
if (status != TX_MUTEX_ERROR)
{
/* Mutex error. */
printf("ERROR #12\n");
test_control_return(1);
}
/* Attempt to get a mutex with a NULL pointer. */
status = tx_mutex_get(TX_NULL, TX_NO_WAIT);
/* Check status. */
if (status != TX_MUTEX_ERROR)
{
/* Mutex error. */
printf("ERROR #13\n");
test_control_return(1);
}
/* Attempt to get a non-created mutex. */
mutex_4.tx_mutex_id = 0;
status = tx_mutex_get(&mutex_4, TX_NO_WAIT);
/* Check status. */
if (status != TX_MUTEX_ERROR)
{
/* Mutex error. */
printf("ERROR #14\n");
test_control_return(1);
}
/* Attempt to put a NULL mutex. */
status = tx_mutex_put(TX_NULL);
/* Check status. */
if (status != TX_MUTEX_ERROR)
{
/* Mutex error. */
printf("ERROR #15\n");
test_control_return(1);
}
/* Attempt to put a non-created mutex. */
mutex_4.tx_mutex_id = 0;
status = tx_mutex_put(&mutex_4);
/* Check status. */
if (status != TX_MUTEX_ERROR)
{
/* Mutex error. */
printf("ERROR #16\n");
test_control_return(1);
}
#endif
/* Attempt to get from mutex that is available. Should be successful! */
status = tx_mutex_get(&mutex_0, TX_NO_WAIT);
/* Check status. */
if (status != TX_SUCCESS)
{
/* Mutex error. */
printf("ERROR #17\n");
test_control_return(1);
}
/* Attempt to get the same mutex again. Should be successful! */
status = tx_mutex_get(&mutex_0, TX_NO_WAIT);
/* Check status. */
if (status != TX_SUCCESS)
{
/* Mutex error. */
printf("ERROR #18\n");
test_control_return(1);
}
/* Put the mutex. */
status = tx_mutex_put(&mutex_0);
/* Check status. */
if ((status != TX_SUCCESS) || (mutex_0.tx_mutex_ownership_count != 1))
{
/* Mutex error. */
printf("ERROR #19\n");
test_control_return(1);
}
/* Put the mutex again. Should be successful! */
status = tx_mutex_put(&mutex_0);
/* Check status. */
if ((status != TX_SUCCESS) != (mutex_0.tx_mutex_owner != TX_NULL))
{
/* Mutex error. */
printf("ERROR #20\n");
test_control_return(1);
}
/* Relinquish to allow other thread to get the mutex. */
tx_thread_relinquish();
/* Attempt to get the mutex. Should be unsuccessful. */
status = tx_mutex_get(&mutex_1, TX_NO_WAIT);
/* Check status. */
if (status != TX_NOT_AVAILABLE)
{
/* Mutex error. */
printf("ERROR #21\n");
test_control_return(1);
}
/* Relinquish again so that the other thread can release it. */
tx_thread_relinquish();
/* Delete mutex. */
status = tx_mutex_delete(&mutex_0);
/* Check status. */
if (status != TX_SUCCESS)
{
/* Mutex error. */
printf("ERROR #22\n");
test_control_return(1);
}
status = tx_mutex_delete(&mutex_1);
/* Check status. */
if (status != TX_SUCCESS)
{
/* Mutex error. */
printf("ERROR #23\n");
test_control_return(1);
}
/* Attempt to get a priority inheritance mutex. */
status = tx_mutex_get(&mutex_2, TX_NO_WAIT);
/* Check status. */
if (status != TX_SUCCESS)
{
/* Mutex error. */
printf("ERROR #24\n");
test_control_return(1);
}
/* Attempt to get another priority inheritance mutex. */
status = tx_mutex_get(&mutex_3, TX_NO_WAIT);
/* Check status. */
if (status != TX_SUCCESS)
{
/* Mutex error. */
printf("ERROR #25\n");
test_control_return(1);
}
#ifndef TX_DISABLE_ERROR_CHECKING
/* Create a timer for the test. */
tx_timer_create(&timer_0, "timer 0", timer_entry, 0, 1, 1, TX_AUTO_ACTIVATE);
/* Setup the ISR. */
test_isr_dispatch = test_isr;
/* Sleep for a bit... */
tx_thread_sleep(3);
/* Wakeup thread 2 to get the ISR to take place on top of the thread. */
tx_thread_resume(&thread_2);
/* Sleep for a bit... */
tx_thread_sleep(3);
/* Clear the ISR. */
test_isr_dispatch = TX_NULL;
/* Test for error. */
if ((error) || (timer_executed != 1) || (isr_executed != 1))
{
/* Block memory error. */
printf("ERROR #26\n");
test_control_return(1);
}
#endif
/* Release mutex multiple times. */
status = tx_mutex_put(&mutex_2);
status += tx_mutex_put(&mutex_2);
/* Check status. */
if (status != TX_NOT_OWNED)
{
/* Mutex error. */
printf("ERROR #27\n");
test_control_return(1);
}
/* Attempt to release a mutex that is not owned. */
status = _tx_mutex_put(&mutex_2);
/* Check status. */
if (status != TX_NOT_OWNED)
{
/* Mutex error. */
printf("ERROR #28\n");
test_control_return(1);
}
/* Delete mutex. */
status = tx_mutex_delete(&mutex_2);
/* Check status. */
if (status != TX_SUCCESS)
{
/* Mutex error. */
printf("ERROR #29\n");
test_control_return(1);
}
/* Get mutex 8. */
status = tx_mutex_get(&mutex_8, TX_WAIT_FOREVER);
/* Start thread 3 and 4. */
status += tx_thread_resume(&thread_3);
status += tx_thread_resume(&thread_4);
/* Sleep to let thread 3 suspend on the mutex. */
tx_thread_sleep(2);
/* Now, put the mutex to give it to thread 3. */
status += tx_mutex_put(&mutex_8);
/* Check status. */
if (status != TX_SUCCESS)
{
/* Mutex error. */
printf("ERROR #29a\n");
test_control_return(1);
}
status = tx_mutex_delete(&mutex_3);
/* Check status. */
if (status != TX_SUCCESS)
{
/* Mutex error. */
printf("ERROR #30\n");
test_control_return(1);
}
else
{
/* Successful test. */
printf("SUCCESS!\n");
test_control_return(0);
}
}
static void thread_1_entry(ULONG thread_input)
{
UINT status;
/* Increment thread 1 counter. */
thread_1_counter++;
/* Attempt to get from mutex that is available. Should be successful! */
status = tx_mutex_get(&mutex_1, TX_NO_WAIT);
/* Check status. */
if (status != TX_SUCCESS)
{
/* Mutex error. */
printf("ERROR #31\n");
test_control_return(1);
}
/* Let other thread run again. */
tx_thread_relinquish();
/* Release mutex! */
status = tx_mutex_put(&mutex_1);
/* Check status. */
if (status != TX_SUCCESS)
{
/* Mutex error. */
printf("ERROR #32\n");
test_control_return(1);
}
/* Create and obtain a couple mutexes so the thread completion can release them. */
status = tx_mutex_create(&mutex_6, "mutex 6", TX_NO_INHERIT);
status += tx_mutex_create(&mutex_7, "mutex 7", TX_NO_INHERIT);
status += tx_mutex_get(&mutex_6, TX_NO_WAIT);
status += tx_mutex_get(&mutex_7, TX_NO_WAIT);
status += tx_mutex_get(&mutex_6, TX_NO_WAIT);
status += tx_mutex_get(&mutex_7, TX_NO_WAIT);
/* Check status. */
if (status != TX_SUCCESS)
{
/* Mutex error. */
printf("ERROR #33\n");
test_control_return(1);
}
}
static void thread_2_entry(ULONG thread_input)
{
while(1)
{
tx_thread_relinquish();
}
}
static void thread_3_entry(ULONG thread_input)
{
while(1)
{
tx_mutex_get(&mutex_8, TX_WAIT_FOREVER);
tx_mutex_put(&mutex_8);
}
}
static void thread_4_entry(ULONG thread_input)
{
while(1)
{
tx_mutex_get(&mutex_8, TX_WAIT_FOREVER);
tx_mutex_put(&mutex_8);
}
}