1
10
13
14
20
21
22
23
24
25
26
27
28
29
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
117
118
119
120
121
122
123
129
130
131
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
159
160
161
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
192
193
194
200
201
202
208
209
210
216
217
218
224
225
226
232
233
234
240
241
242
243
244
245
246
247
248
249
255
256
257
258
259
270
271
272
277
278
279
280
281
284
285
286
287
288
289
290
291
297
298
299
300
301
302
304
305
306
308
309
310
311
312
313
314
315
316
317
318
319
320
324
325
326
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
391
392
410
411
412
413
414
415
416
417
418
419
420
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
457
458
459
462
463
464
465
468
469
470
471
472
473
474
475
476
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
523
524
525
527
528
529
530
531
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
576
577
578
579
580
581
582
583
584
585
588
589
590
591
592
595
596
597
598
599
600
601
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
635
636
637
639
640
641
642
643
644
645
646
647
648
652
653
654
655
656
657
658
659
660
661
662
663
666
667
668
669
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
706
707
708
709
710
711
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
...
...
...
#define TX_SOURCE_CODE
#define TX_THREAD_SMP_SOURCE_CODE
#include "tx_api.h"
#include "tx_trace.h"
#include "tx_thread.h"
#include "tx_initialize.h"
#include "tx_timer.h"
#include "txm_module.h"
6 includes
...
...
UINT _txm_module_manager_thread_create(TX_THREAD *thread_ptr, CHAR *name_ptr,
VOID (*shell_function)(TX_THREAD *, TXM_MODULE_INSTANCE *),
VOID (*entry_function)(ULONG id), ULONG entry_input,
VOID *stack_start, ULONG stack_size, UINT priority, UINT preempt_threshold,
ULONG time_slice, UINT auto_start,
UINT thread_control_block_size, TXM_MODULE_INSTANCE *module_instance)
{
TX_INTERRUPT_SAVE_AREA
#ifdef TX_THREAD_SMP
UINT core_index;
#endif
TX_THREAD *next_thread;
TX_THREAD *previous_thread;
TX_THREAD *saved_thread_ptr;
UINT saved_threshold = ((UINT) 0);
UCHAR *temp_ptr;
#ifdef TX_ENABLE_STACK_CHECKING
ALIGN_TYPE new_stack_start;
ALIGN_TYPE updated_stack_start;/* ... */
#endif
TXM_MODULE_THREAD_ENTRY_INFO *thread_entry_info;
VOID *stack_end;
ULONG i;
if (thread_ptr == TX_NULL)
{
return(TX_THREAD_ERROR);
}if (thread_ptr == TX_NULL) { ... }
else if (thread_control_block_size != (sizeof(TX_THREAD)))
{
return(TX_THREAD_ERROR);
}else if (thread_control_block_size != (sizeof(TX_THREAD))) { ... }
TX_DISABLE
_tx_thread_preempt_disable++;
TX_RESTORE
next_thread = _tx_thread_created_ptr;
stack_end = (VOID *) (((UCHAR *) ((VOID *) stack_start)) + (stack_size - 1));
for (i = 0; i < _tx_thread_created_count; i++)
{
if (thread_ptr == next_thread)
{
break;
}if (thread_ptr == next_thread) { ... }
if ((((UCHAR *) ((VOID *) stack_start)) <= ((UCHAR *) ((VOID *) next_thread -> tx_thread_stack_end))) &&
(((UCHAR *) ((VOID *) stack_end)) >= ((UCHAR *) ((VOID *) next_thread -> tx_thread_stack_start))))
{
stack_start = TX_NULL;
break;
}if ((((UCHAR *) ((VOID *) stack_start)) <= ((UCHAR *) ((VOID *) next_thread -> tx_thread_stack_end))) && (((UCHAR *) ((VOID *) stack_end)) >= ((UCHAR *) ((VOID *) next_thread -> tx_thread_stack_start)))) { ... }
next_thread = next_thread -> tx_thread_created_next;
}for (i = 0; i < _tx_thread_created_count; i++) { ... }
TX_DISABLE
_tx_thread_preempt_disable--;
TX_RESTORE
_tx_thread_system_preempt_check();
if (thread_ptr == next_thread)
{
return(TX_THREAD_ERROR);
}if (thread_ptr == next_thread) { ... }
if (stack_start == TX_NULL)
{
return(TX_PTR_ERROR);
}if (stack_start == TX_NULL) { ... }
if (entry_function == TX_NULL)
{
return(TX_PTR_ERROR);
}if (entry_function == TX_NULL) { ... }
if (stack_size < TX_MINIMUM_STACK)
{
return(TX_SIZE_ERROR);
}if (stack_size < TX_MINIMUM_STACK) { ... }
if (priority >= TX_MAX_PRIORITIES)
{
return(TX_PRIORITY_ERROR);
}if (priority >= TX_MAX_PRIORITIES) { ... }
if (preempt_threshold > priority)
{
return(TX_THRESH_ERROR);
}if (preempt_threshold > priority) { ... }
if (auto_start > TX_AUTO_START)
{
return(TX_START_ERROR);
}if (auto_start > TX_AUTO_START) { ... }
#ifndef TX_TIMER_PROCESS_IN_ISR
{
TX_THREAD *current_thread;
TX_THREAD_GET_CURRENT(current_thread)
if (current_thread == &_tx_timer_thread)
{
return(TX_CALLER_ERROR);
}if (current_thread == &_tx_timer_thread) { ... }
...}/* ... */
#endif
if (TX_THREAD_GET_SYSTEM_STATE() != 0)
{
if (TX_THREAD_GET_SYSTEM_STATE() < TX_INITIALIZE_IN_PROGRESS)
{
return(TX_CALLER_ERROR);
}if (TX_THREAD_GET_SYSTEM_STATE() < TX_INITIALIZE_IN_PROGRESS) { ... }
}if (TX_THREAD_GET_SYSTEM_STATE() != 0) { ... }
#ifndef TX_DISABLE_STACK_FILLING
/* ... */
TX_MEMSET(stack_start, ((UCHAR) TX_STACK_FILL), stack_size);/* ... */
#endif
#ifdef TX_ENABLE_STACK_CHECKING
/* ... */
stack_size = ((stack_size/(sizeof(ULONG))) * (sizeof(ULONG))) - (sizeof(ULONG));
new_stack_start = TX_POINTER_TO_ALIGN_TYPE_CONVERT(stack_start);
updated_stack_start = ((((ULONG) new_stack_start) + ((sizeof(ULONG)) - ((ULONG) 1)) ) & (~((sizeof(ULONG)) - ((ULONG) 1))));
if (new_stack_start != updated_stack_start)
{
stack_size = stack_size - (sizeof(ULONG));
}if (new_stack_start != updated_stack_start) { ... }
stack_start = TX_ALIGN_TYPE_TO_POINTER_CONVERT(updated_stack_start);/* ... */
#endif
/* ... */
stack_size = stack_size - (sizeof(TXM_MODULE_THREAD_ENTRY_INFO) + (3*sizeof(ULONG)));
/* ... */
TX_MEMSET(thread_ptr, 0, sizeof(TX_THREAD));
#if TXM_MODULE_MEMORY_PROTECTION
if((module_instance -> txm_module_instance_property_flags) & TXM_MODULE_MEMORY_PROTECTION)
{
ULONG status;
status = _txm_module_manager_object_allocate((VOID **) &(thread_ptr -> tx_thread_module_kernel_stack_start), TXM_MODULE_KERNEL_STACK_SIZE, module_instance);
if(status)
{
return(status);
}if (status) { ... }
#ifndef TX_DISABLE_STACK_FILLING
/* ... */
TX_MEMSET(thread_ptr -> tx_thread_module_kernel_stack_start, ((UCHAR) TX_STACK_FILL), TXM_MODULE_KERNEL_STACK_SIZE);/* ... */
#endif
thread_ptr -> tx_thread_module_kernel_stack_end = (VOID *) (((ALIGN_TYPE)(thread_ptr -> tx_thread_module_kernel_stack_start) + TXM_MODULE_KERNEL_STACK_SIZE) & ~0x07);
thread_ptr -> tx_thread_module_kernel_stack_size = TXM_MODULE_KERNEL_STACK_SIZE;
}if ((module_instance -> txm_module_instance_property_flags) & TXM_MODULE_MEMORY_PROTECTION) { ... }
thread_ptr -> tx_thread_module_stack_start = stack_start;
thread_ptr -> tx_thread_module_stack_size = stack_size;/* ... */
#endif
thread_ptr -> tx_thread_name = name_ptr;
thread_ptr -> tx_thread_entry = entry_function;
thread_ptr -> tx_thread_entry_parameter = entry_input;
thread_ptr -> tx_thread_stack_start = stack_start;
thread_ptr -> tx_thread_stack_size = stack_size;
thread_ptr -> tx_thread_priority = priority;
thread_ptr -> tx_thread_user_priority = priority;
thread_ptr -> tx_thread_time_slice = time_slice;
thread_ptr -> tx_thread_new_time_slice = time_slice;
thread_ptr -> tx_thread_inherit_priority = ((UINT) TX_MAX_PRIORITIES);
#ifdef TX_THREAD_SMP
thread_ptr -> tx_thread_smp_core_executing = ((UINT) TX_THREAD_SMP_MAX_CORES);
thread_ptr -> tx_thread_smp_cores_excluded = ((ULONG) 0);
#ifndef TX_THREAD_SMP_DYNAMIC_CORE_MAX
thread_ptr -> tx_thread_smp_cores_allowed = ((ULONG) TX_THREAD_SMP_CORE_MASK);
#else
thread_ptr -> tx_thread_smp_cores_allowed = (((ULONG) 1) << _tx_thread_smp_max_cores) - 1;
#endif
#ifdef TX_THREAD_SMP_ONLY_CORE_0_DEFAULT
thread_ptr -> tx_thread_smp_cores_excluded = (TX_THREAD_SMP_CORE_MASK & 0xFFFFFFFE);
thread_ptr -> tx_thread_smp_cores_allowed = 1;
thread_ptr -> tx_thread_timer.tx_timer_internal_smp_cores_excluded = (TX_THREAD_SMP_CORE_MASK & 0xFFFFFFFE);
thread_ptr -> tx_thread_smp_core_mapped = 0;/* ... */
#endif/* ... */
#endif
temp_ptr = TX_VOID_TO_UCHAR_POINTER_CONVERT(stack_start);
temp_ptr = (TX_UCHAR_POINTER_ADD(temp_ptr, (stack_size - ((ULONG) 1))));
thread_ptr -> tx_thread_stack_end = TX_UCHAR_TO_VOID_POINTER_CONVERT(temp_ptr);
#if TXM_MODULE_MEMORY_PROTECTION
thread_ptr -> tx_thread_module_stack_end = thread_ptr -> tx_thread_stack_end;
#endif
#ifndef TX_DISABLE_PREEMPTION_THRESHOLD
thread_ptr -> tx_thread_preempt_threshold = preempt_threshold;
thread_ptr -> tx_thread_user_preempt_threshold = preempt_threshold;/* ... */
#else
if (priority != preempt_threshold)
{
/* ... */
thread_ptr -> tx_thread_preempt_threshold = ((UINT) 0);
thread_ptr -> tx_thread_user_preempt_threshold = ((UINT) 0);
}if (priority != preempt_threshold) { ... }
else
{
thread_ptr -> tx_thread_preempt_threshold = priority;
thread_ptr -> tx_thread_user_preempt_threshold = priority;
}else { ... }
/* ... */#endif
thread_ptr -> tx_thread_state = TX_SUSPENDED;
TX_THREAD_CREATE_TIMEOUT_SETUP(thread_ptr)
TX_THREAD_CREATE_INTERNAL_EXTENSION(thread_ptr)
/* ... */
thread_entry_info = (TXM_MODULE_THREAD_ENTRY_INFO *) (((UCHAR *) thread_ptr -> tx_thread_stack_end) + (2*sizeof(ULONG)) + 1);
thread_entry_info = (TXM_MODULE_THREAD_ENTRY_INFO *) (((ALIGN_TYPE)(thread_entry_info)) & (~0x3));
thread_entry_info -> txm_module_thread_entry_info_thread = thread_ptr;
thread_entry_info -> txm_module_thread_entry_info_module = module_instance;
thread_entry_info -> txm_module_thread_entry_info_data_base_address = module_instance -> txm_module_instance_module_data_base_address;
thread_entry_info -> txm_module_thread_entry_info_code_base_address = module_instance -> txm_module_instance_code_start;
thread_entry_info -> txm_module_thread_entry_info_entry = thread_ptr -> tx_thread_entry;
thread_entry_info -> txm_module_thread_entry_info_parameter = thread_ptr -> tx_thread_entry_parameter;
thread_entry_info -> txm_module_thread_entry_info_callback_request_queue = &(module_instance -> txm_module_instance_callback_request_queue);
thread_entry_info -> txm_module_thread_entry_info_callback_request_thread = &(module_instance -> txm_module_instance_callback_request_thread);
TXM_MODULE_MANAGER_THREAD_SETUP(thread_ptr, module_instance)
#ifndef TX_DISABLE_NOTIFY_CALLBACKS
thread_entry_info -> txm_module_thread_entry_info_exit_notify = thread_ptr -> tx_thread_entry_exit_notify;
#else
thread_entry_info -> txm_module_thread_entry_info_exit_notify = TX_NULL;
#endif
if (thread_ptr -> tx_thread_entry == module_instance -> txm_module_instance_start_thread_entry)
thread_entry_info -> txm_module_thread_entry_info_start_thread = TX_TRUE;
else
thread_entry_info -> txm_module_thread_entry_info_start_thread = TX_FALSE;
thread_ptr -> tx_thread_module_instance_ptr = (VOID *) module_instance;
thread_ptr -> tx_thread_module_entry_info_ptr = (VOID *) thread_entry_info;
/* ... */
thread_ptr -> tx_thread_stack_ptr = (VOID *) thread_entry_info;
/* ... */
_txm_module_manager_thread_stack_build(thread_ptr, shell_function);
#ifdef TX_ENABLE_STACK_CHECKING
thread_ptr -> tx_thread_stack_highest_ptr = thread_ptr -> tx_thread_stack_ptr;/* ... */
#endif
TX_DISABLE
thread_ptr -> tx_thread_id = TX_THREAD_ID;
/* ... */
if (_tx_thread_created_count == TX_EMPTY)
{
_tx_thread_created_ptr = thread_ptr;
thread_ptr -> tx_thread_created_next = thread_ptr;
thread_ptr -> tx_thread_created_previous = thread_ptr;
}if (_tx_thread_created_count == TX_EMPTY) { ... }
else
{
next_thread = _tx_thread_created_ptr;
previous_thread = next_thread -> tx_thread_created_previous;
next_thread -> tx_thread_created_previous = thread_ptr;
previous_thread -> tx_thread_created_next = thread_ptr;
thread_ptr -> tx_thread_created_previous = previous_thread;
thread_ptr -> tx_thread_created_next = next_thread;
}else { ... }
_tx_thread_created_count++;
TX_TRACE_OBJECT_REGISTER(TX_TRACE_OBJECT_TYPE_THREAD, thread_ptr, name_ptr, TX_POINTER_TO_ULONG_CONVERT(stack_start), stack_size)
TX_TRACE_IN_LINE_INSERT(TX_TRACE_THREAD_CREATE, thread_ptr, priority, TX_POINTER_TO_ULONG_CONVERT(stack_start), stack_size, TX_TRACE_THREAD_EVENTS)
TX_EL_THREAD_REGISTER(thread_ptr)
TX_EL_THREAD_CREATE_INSERT
#ifdef TX_THREAD_SMP
#ifndef TX_NOT_INTERRUPTABLE
_tx_thread_preempt_disable++;/* ... */
#endif
/* ... */
if (auto_start == TX_AUTO_START)
{
#ifdef TX_NOT_INTERRUPTABLE
TX_THREAD_CREATE_EXTENSION(thread_ptr)
_tx_thread_system_ni_resume(thread_ptr);
/* ... */
#else
TX_RESTORE
TX_THREAD_CREATE_EXTENSION(thread_ptr)
_tx_thread_system_resume(thread_ptr);
TX_DISABLE/* ... */
#endif
if (_tx_thread_smp_current_state_get() >= TX_INITIALIZE_IN_PROGRESS)
{
#ifndef TX_DISABLE_PREEMPTION_THRESHOLD
TX_MEMSET(_tx_thread_preempted_maps, 0, sizeof(_tx_thread_preempted_maps));
#if TX_MAX_PRIORITIES > 32
_tx_thread_preempted_map_active = ((ULONG) 0);
#endif
_tx_thread_preemption_threshold_list[priority] = TX_NULL;/* ... */
#endif
_tx_thread_preemption__threshold_scheduled = TX_NULL;
#ifdef TX_THREAD_SMP_DEBUG_ENABLE
_tx_thread_smp_debug_entry_insert(12, 0, thread_ptr);/* ... */
#endif
core_index = TX_SMP_CORE_ID;
_tx_thread_smp_rebalance_execute_list(core_index);
#ifdef TX_THREAD_SMP_DEBUG_ENABLE
_tx_thread_smp_debug_entry_insert(13, 0, thread_ptr);/* ... */
#endif
}if (_tx_thread_smp_current_state_get() >= TX_INITIALIZE_IN_PROGRESS) { ... }
#ifndef TX_NOT_INTERRUPTABLE
TX_RESTORE/* ... */
#endif
}if (auto_start == TX_AUTO_START) { ... }
else
{
#ifdef TX_NOT_INTERRUPTABLE
TX_THREAD_CREATE_EXTENSION(thread_ptr)
TX_RESTORE/* ... */
#else
TX_RESTORE
TX_THREAD_CREATE_EXTENSION(thread_ptr)
TX_DISABLE
_tx_thread_preempt_disable--;
TX_RESTORE
_tx_thread_system_preempt_check();/* ... */
#endif
}else { ... }
/* ... */
#else
#ifndef TX_NOT_INTERRUPTABLE
_tx_thread_preempt_disable++;/* ... */
#endif
/* ... */
if (auto_start == TX_AUTO_START)
{
if (TX_THREAD_GET_SYSTEM_STATE() >= TX_INITIALIZE_IN_PROGRESS)
{
/* ... */
saved_thread_ptr = _tx_thread_execute_ptr;
if (saved_thread_ptr != TX_NULL)
{
saved_threshold = saved_thread_ptr -> tx_thread_preempt_threshold;
/* ... */
saved_thread_ptr -> tx_thread_preempt_threshold = saved_thread_ptr -> tx_thread_priority;
}if (saved_thread_ptr != TX_NULL) { ... }
}if (TX_THREAD_GET_SYSTEM_STATE() >= TX_INITIALIZE_IN_PROGRESS) { ... }
else
{
saved_thread_ptr = TX_NULL;
}else { ... }
#ifdef TX_NOT_INTERRUPTABLE
TX_THREAD_CREATE_EXTENSION(thread_ptr)
_tx_thread_system_ni_resume(thread_ptr);
TX_RESTORE/* ... */
#else
TX_RESTORE
TX_THREAD_CREATE_EXTENSION(thread_ptr)
_tx_thread_system_resume(thread_ptr);/* ... */
#endif
if (saved_thread_ptr != TX_NULL)
{
/* ... */
saved_thread_ptr -> tx_thread_preempt_threshold = saved_threshold;
}if (saved_thread_ptr != TX_NULL) { ... }
}if (auto_start == TX_AUTO_START) { ... }
else
{
#ifdef TX_NOT_INTERRUPTABLE
TX_THREAD_CREATE_EXTENSION(thread_ptr)
TX_RESTORE/* ... */
#else
TX_RESTORE
TX_THREAD_CREATE_EXTENSION(thread_ptr)
TX_DISABLE
_tx_thread_preempt_disable--;
TX_RESTORE
_tx_thread_system_preempt_check();/* ... */
#endif
}else { ... }
/* ... */
#endif
return(TX_SUCCESS);
}_txm_module_manager_thread_create (TX_THREAD *thread_ptr, CHAR *name_ptr, VOID (*shell_function)(TX_THREAD *, TXM_MODULE_INSTANCE *), VOID (*entry_function)(ULONG id), ULONG entry_input, VOID *stack_start, ULONG stack_size, UINT priority, UINT preempt_threshold, ULONG time_slice, UINT auto_start, UINT thread_control_block_size, TXM_MODULE_INSTANCE *module_instance) { ... }
...