Select one of the symbols to view example projects that use it.
 
Outline
_txm_module_manager_thread_create(TX_THREAD *, CHAR *, void (*)(TX_THREAD *, TXM_MODULE_INSTANCE *), void (*)(ULONG), ULONG, void *, ULONG, UINT, UINT, ULONG, UINT, UINT, TXM_MODULE_INSTANCE *)
...
...
...
...
#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"
...
...
Files
loading...
SourceVuSTM32 Libraries and Samplesthreadxcommon_modules/module_manager/src/txm_module_manager_thread_create.c
 
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* This software is licensed under the Microsoft Software License */ /* Terms for Microsoft Azure RTOS. Full text of the license can be */ /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ /* and in the root directory of this software. */ /* */... /**************************************************************************/ ... /**************************************************************************/ /**************************************************************************/ /** */ /** ThreadX Component */ /** */ /** Module Manager */ /** */... /**************************************************************************/ /**************************************************************************/ #define TX_SOURCE_CODE #define TX_THREAD_SMP_SOURCE_CODE /* Include necessary system files. */ #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 ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _txm_module_manager_thread_create PORTABLE C */ /* 6.1.3 */ /* AUTHOR */ /* */ /* Scott Larson, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function creates a thread and places it on the list of created */ /* threads. */ /* */ /* INPUT */ /* */ /* thread_ptr Thread control block pointer */ /* name Pointer to thread name string */ /* shell_function Shell function of the thread */ /* entry_function Entry function of the thread */ /* entry_input 32-bit input value to thread */ /* stack_start Pointer to start of stack */ /* stack_size Stack size in bytes */ /* priority Priority of thread */ /* (default 0-31) */ /* preempt_threshold Preemption threshold */ /* time_slice Thread time-slice value */ /* auto_start Automatic start selection */ /* */ /* OUTPUT */ /* */ /* return status Thread create return status */ /* */ /* CALLS */ /* */ /* _txm_module_manager_thread_stack_build Build initial thread stack */ /* _tx_thread_system_resume Resume automatic start thread */ /* _tx_thread_system_ni_resume Noninterruptable resume thread*/ /* _tx_thread_system_preempt_check Check for preemption */ /* */ /* CALLED BY */ /* */ /* _txm_module_manager_start Initiate module's start thread*/ /* _txm_module_manager_stop Initiate module's stop thread */ /* _txm_module_manager_kernel_dispatch Kernel dispatch function */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 09-30-2020 Scott Larson Initial Version 6.1 */ /* 12-31-2020 Scott Larson Modified comment(s), */ /* fix stack overlap checking, */ /* added 64-bit support, */ /* added SMP support, */ /* resulting in version 6.1.3 */ /* */... /**************************************************************************/ 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; /* First, check for an invalid thread pointer. */ if (thread_ptr == TX_NULL) { /* Thread pointer is invalid, return appropriate error code. */ return(TX_THREAD_ERROR); }if (thread_ptr == TX_NULL) { ... } /* Now check for invalid thread control block size. */ else if (thread_control_block_size != (sizeof(TX_THREAD))) { /* Thread pointer is invalid, return appropriate error code. */ return(TX_THREAD_ERROR); }else if (thread_control_block_size != (sizeof(TX_THREAD))) { ... } /* Disable interrupts. */ TX_DISABLE /* Increment the preempt disable flag. */ _tx_thread_preempt_disable++; /* Restore interrupts. */ TX_RESTORE /* Next see if it is already in the created list. */ 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++) { /* Determine if this thread matches the thread in the list. */ if (thread_ptr == next_thread) { break; }if (thread_ptr == next_thread) { ... } /* Check the stack pointer to see if it overlaps with this thread's stack. */ 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)))) { /* Stacks overlap, clear the stack pointer to force a stack error below. */ 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)))) { ... } /* Move to the next thread. */ next_thread = next_thread -> tx_thread_created_next; }for (i = 0; i < _tx_thread_created_count; i++) { ... } /* Disable interrupts. */ TX_DISABLE /* Decrement the preempt disable flag. */ _tx_thread_preempt_disable--; /* Restore interrupts. */ TX_RESTORE /* Check for preemption. */ _tx_thread_system_preempt_check(); /* At this point, check to see if there is a duplicate thread. */ if (thread_ptr == next_thread) { /* Thread is already created, return appropriate error code. */ return(TX_THREAD_ERROR); }if (thread_ptr == next_thread) { ... } /* Check for invalid starting address of stack. */ if (stack_start == TX_NULL) { /* Invalid stack or entry point, return appropriate error code. */ return(TX_PTR_ERROR); }if (stack_start == TX_NULL) { ... } /* Check for invalid thread entry point. */ if (entry_function == TX_NULL) { /* Invalid stack or entry point, return appropriate error code. */ return(TX_PTR_ERROR); }if (entry_function == TX_NULL) { ... } /* Check the stack size. */ if (stack_size < TX_MINIMUM_STACK) { /* Stack is not big enough, return appropriate error code. */ return(TX_SIZE_ERROR); }if (stack_size < TX_MINIMUM_STACK) { ... } /* Check the priority specified. */ if (priority >= TX_MAX_PRIORITIES) { /* Invalid priority selected, return appropriate error code. */ return(TX_PRIORITY_ERROR); }if (priority >= TX_MAX_PRIORITIES) { ... } /* Check preemption threshold. */ if (preempt_threshold > priority) { /* Invalid preempt threshold, return appropriate error code. */ return(TX_THRESH_ERROR); }if (preempt_threshold > priority) { ... } /* Check the start selection. */ if (auto_start > TX_AUTO_START) { /* Invalid auto start selection, return appropriate error code. */ return(TX_START_ERROR); }if (auto_start > TX_AUTO_START) { ... } #ifndef TX_TIMER_PROCESS_IN_ISR { TX_THREAD *current_thread; /* Pickup thread pointer. */ TX_THREAD_GET_CURRENT(current_thread) /* Check for invalid caller of this function. First check for a calling thread. */ if (current_thread == &_tx_timer_thread) { /* Invalid caller of this function, return appropriate error code. */ return(TX_CALLER_ERROR); }if (current_thread == &_tx_timer_thread) { ... } ...}/* ... */ #endif /* Check for interrupt call. */ if (TX_THREAD_GET_SYSTEM_STATE() != 0) { /* Now, make sure the call is from an interrupt and not initialization. */ if (TX_THREAD_GET_SYSTEM_STATE() < TX_INITIALIZE_IN_PROGRESS) { /* Invalid caller of this function, return appropriate error code. */ 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 /* Set the thread stack to a pattern prior to creating the initial stack frame. This pattern is used by the stack checking routines to see how much has been used. *//* ... */ TX_MEMSET(stack_start, ((UCHAR) TX_STACK_FILL), stack_size);/* ... */ #endif #ifdef TX_ENABLE_STACK_CHECKING /* Ensure that there are two ULONG of 0xEF patterns at the top and bottom of the thread's stack. This will be used to check for stack overflow conditions during run-time. *//* ... */ stack_size = ((stack_size/(sizeof(ULONG))) * (sizeof(ULONG))) - (sizeof(ULONG)); /* Ensure the starting stack address is evenly aligned. */ 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)))); /* Determine if the starting stack address is different. */ if (new_stack_start != updated_stack_start) { /* Yes, subtract another ULONG from the size to avoid going past the stack area. */ stack_size = stack_size - (sizeof(ULONG)); }if (new_stack_start != updated_stack_start) { ... } /* Update the starting stack pointer. */ stack_start = TX_ALIGN_TYPE_TO_POINTER_CONVERT(updated_stack_start);/* ... */ #endif /* Allocate the thread entry information at the top of thread's stack - Leaving one ULONG worth of 0xEF pattern between the actual stack and the entry info structure. *//* ... */ stack_size = stack_size - (sizeof(TXM_MODULE_THREAD_ENTRY_INFO) + (3*sizeof(ULONG))); /* Prepare the thread control block prior to placing it on the created list. *//* ... */ /* Initialize thread control block to all zeros. */ TX_MEMSET(thread_ptr, 0, sizeof(TX_THREAD)); #if TXM_MODULE_MEMORY_PROTECTION /* If this is a memory protected module, allocate a kernel stack. */ if((module_instance -> txm_module_instance_property_flags) & TXM_MODULE_MEMORY_PROTECTION) { ULONG status; /* Allocate kernel stack space. */ 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 /* Set the thread stack to a pattern prior to creating the initial stack frame. This pattern is used by the stack checking routines to see how much has been used. *//* ... */ TX_MEMSET(thread_ptr -> tx_thread_module_kernel_stack_start, ((UCHAR) TX_STACK_FILL), TXM_MODULE_KERNEL_STACK_SIZE);/* ... */ #endif /* Align kernel stack pointer. */ 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); /* Set kernel stack size. */ 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) { ... } /* Place the stack parameters into the thread's control block. */ thread_ptr -> tx_thread_module_stack_start = stack_start; thread_ptr -> tx_thread_module_stack_size = stack_size;/* ... */ #endif /* Place the supplied parameters into the thread's control block. */ 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 /* Default thread creation such that core0 is the only allowed core for execution, i.e., bit 1 is set to exclude core1. */ thread_ptr -> tx_thread_smp_cores_excluded = (TX_THREAD_SMP_CORE_MASK & 0xFFFFFFFE); thread_ptr -> tx_thread_smp_cores_allowed = 1; /* Default the timers to run on core 0 as well. */ thread_ptr -> tx_thread_timer.tx_timer_internal_smp_cores_excluded = (TX_THREAD_SMP_CORE_MASK & 0xFFFFFFFE); /* Default the mapped to 0 too. */ thread_ptr -> tx_thread_smp_core_mapped = 0;/* ... */ #endif/* ... */ #endif /* Calculate the end of the thread's stack area. */ 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 /* TXM_MODULE_MEMORY_PROTECTION */ #ifndef TX_DISABLE_PREEMPTION_THRESHOLD /* Preemption-threshold is enabled, setup accordingly. */ thread_ptr -> tx_thread_preempt_threshold = preempt_threshold; thread_ptr -> tx_thread_user_preempt_threshold = preempt_threshold;/* ... */ #else /* Preemption-threshold is disabled, determine if preemption-threshold was required. */ if (priority != preempt_threshold) { /* Preemption-threshold specified. Since specific preemption-threshold is not supported, disable all preemption. *//* ... */ thread_ptr -> tx_thread_preempt_threshold = ((UINT) 0); thread_ptr -> tx_thread_user_preempt_threshold = ((UINT) 0); }if (priority != preempt_threshold) { ... } else { /* Preemption-threshold is not specified, just setup with the priority. */ thread_ptr -> tx_thread_preempt_threshold = priority; thread_ptr -> tx_thread_user_preempt_threshold = priority; }else { ... } /* ... */#endif /* Now fill in the values that are required for thread initialization. */ thread_ptr -> tx_thread_state = TX_SUSPENDED; /* Setup the necessary fields in the thread timer block. */ TX_THREAD_CREATE_TIMEOUT_SETUP(thread_ptr) /* Perform any additional thread setup activities for tool or user purpose. */ TX_THREAD_CREATE_INTERNAL_EXTENSION(thread_ptr) /* Setup pointer to the thread entry information structure, which will live at the top of each module thread's stack. This will allow the module thread entry function to avoid direct access to the actual thread control block. *//* ... */ 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)); /* Build the thread entry information structure. */ 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); /* Populate thread control block with some stock information from the module. */ 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 /* TX_DISABLE_NOTIFY_CALLBACKS */ thread_entry_info -> txm_module_thread_entry_info_exit_notify = TX_NULL; #endif /* TX_DISABLE_NOTIFY_CALLBACKS */ 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; /* Place pointers to the thread info and module instance in the thread control block. */ thread_ptr -> tx_thread_module_instance_ptr = (VOID *) module_instance; thread_ptr -> tx_thread_module_entry_info_ptr = (VOID *) thread_entry_info; /* Place the thread entry information pointer in the thread control block so it can be picked up in the following stack build function. This is supplied to the module's shell entry function to avoid direct access to the actual thread control block. Note that this is overwritten with the actual stack pointer at the end of stack build. *//* ... */ thread_ptr -> tx_thread_stack_ptr = (VOID *) thread_entry_info; /* Call the target specific stack frame building routine to build the thread's initial stack and to setup the actual stack pointer in the control block. *//* ... */ _txm_module_manager_thread_stack_build(thread_ptr, shell_function); #ifdef TX_ENABLE_STACK_CHECKING /* Setup the highest usage stack pointer. */ thread_ptr -> tx_thread_stack_highest_ptr = thread_ptr -> tx_thread_stack_ptr;/* ... */ #endif /* Prepare to make this thread a member of the created thread list. */ TX_DISABLE /* Load the thread ID field in the thread control block. */ thread_ptr -> tx_thread_id = TX_THREAD_ID; /* Place the thread on the list of created threads. First, check for an empty list. *//* ... */ if (_tx_thread_created_count == TX_EMPTY) { /* The created thread list is empty. Add thread to empty list. */ _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 { /* This list is not NULL, add to the end of the list. */ next_thread = _tx_thread_created_ptr; previous_thread = next_thread -> tx_thread_created_previous; /* Place the new thread in the list. */ next_thread -> tx_thread_created_previous = thread_ptr; previous_thread -> tx_thread_created_next = thread_ptr; /* Setup this thread's created links. */ thread_ptr -> tx_thread_created_previous = previous_thread; thread_ptr -> tx_thread_created_next = next_thread; }else { ... } /* Increment the thread created count. */ _tx_thread_created_count++; /* If trace is enabled, register this object. */ TX_TRACE_OBJECT_REGISTER(TX_TRACE_OBJECT_TYPE_THREAD, thread_ptr, name_ptr, TX_POINTER_TO_ULONG_CONVERT(stack_start), stack_size) /* If trace is enabled, insert this event into the trace buffer. */ 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) /* Register thread in the thread array structure. */ TX_EL_THREAD_REGISTER(thread_ptr) /* Log this kernel call. */ TX_EL_THREAD_CREATE_INSERT #ifdef TX_THREAD_SMP #ifndef TX_NOT_INTERRUPTABLE /* Temporarily disable preemption. */ _tx_thread_preempt_disable++;/* ... */ #endif /* Determine if an automatic start was requested. If so, call the resume thread function and then check for a preemption condition. *//* ... */ if (auto_start == TX_AUTO_START) { #ifdef TX_NOT_INTERRUPTABLE /* Perform any additional activities for tool or user purpose. */ TX_THREAD_CREATE_EXTENSION(thread_ptr) /* Resume the thread! */ _tx_thread_system_ni_resume(thread_ptr); /* ... */ #else /* Restore previous interrupt posture. */ TX_RESTORE /* Perform any additional activities for tool or user purpose. */ TX_THREAD_CREATE_EXTENSION(thread_ptr) /* Call the resume thread function to make this thread ready. */ _tx_thread_system_resume(thread_ptr); /* Disable interrupts again. */ TX_DISABLE/* ... */ #endif /* Determine if the execution list needs to be re-evaluated. */ if (_tx_thread_smp_current_state_get() >= TX_INITIALIZE_IN_PROGRESS) { #ifndef TX_DISABLE_PREEMPTION_THRESHOLD /* Clear the preemption bit maps, since nothing has yet run during initialization. */ 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 /* Clear the entry in the preempted thread list. */ _tx_thread_preemption_threshold_list[priority] = TX_NULL;/* ... */ #endif /* Set the pointer to the thread currently with preemption-threshold set to NULL. */ _tx_thread_preemption__threshold_scheduled = TX_NULL; #ifdef TX_THREAD_SMP_DEBUG_ENABLE /* Debug entry. */ _tx_thread_smp_debug_entry_insert(12, 0, thread_ptr);/* ... */ #endif /* Get the core index. */ core_index = TX_SMP_CORE_ID; /* Call the rebalance routine. This routine maps cores and ready threads. */ _tx_thread_smp_rebalance_execute_list(core_index); #ifdef TX_THREAD_SMP_DEBUG_ENABLE /* Debug entry. */ _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 /* Restore interrupts. */ TX_RESTORE/* ... */ #endif }if (auto_start == TX_AUTO_START) { ... } else { #ifdef TX_NOT_INTERRUPTABLE /* Perform any additional activities for tool or user purpose. */ TX_THREAD_CREATE_EXTENSION(thread_ptr) /* Restore interrupts. */ TX_RESTORE/* ... */ #else /* Restore interrupts. */ TX_RESTORE /* Perform any additional activities for tool or user purpose. */ TX_THREAD_CREATE_EXTENSION(thread_ptr) /* Disable interrupts. */ TX_DISABLE /* Re-enable preemption. */ _tx_thread_preempt_disable--; /* Restore interrupts. */ TX_RESTORE /* Check for preemption. */ _tx_thread_system_preempt_check();/* ... */ #endif }else { ... } /* ... */ #else /* TX_THREAD_SMP */ #ifndef TX_NOT_INTERRUPTABLE /* Temporarily disable preemption. */ _tx_thread_preempt_disable++;/* ... */ #endif /* Determine if an automatic start was requested. If so, call the resume thread function and then check for a preemption condition. *//* ... */ if (auto_start == TX_AUTO_START) { /* Determine if the create call is being called from initialization. */ if (TX_THREAD_GET_SYSTEM_STATE() >= TX_INITIALIZE_IN_PROGRESS) { /* Yes, this create call was made from initialization. */ /* Pickup the current thread execute pointer, which corresponds to the highest priority thread ready to execute. Interrupt lockout is not required, since interrupts are assumed to be disabled during initialization. *//* ... */ saved_thread_ptr = _tx_thread_execute_ptr; /* Determine if there is thread ready for execution. */ if (saved_thread_ptr != TX_NULL) { /* Yes, a thread is ready for execution when initialization completes. */ /* Save the current preemption-threshold. */ saved_threshold = saved_thread_ptr -> tx_thread_preempt_threshold; /* For initialization, temporarily set the preemption-threshold to the priority level to make sure the highest-priority thread runs once initialization is complete. *//* ... */ 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 { /* Simply set the saved thread pointer to NULL. */ saved_thread_ptr = TX_NULL; }else { ... } #ifdef TX_NOT_INTERRUPTABLE /* Perform any additional activities for tool or user purpose. */ TX_THREAD_CREATE_EXTENSION(thread_ptr) /* Resume the thread! */ _tx_thread_system_ni_resume(thread_ptr); /* Restore previous interrupt posture. */ TX_RESTORE/* ... */ #else /* Restore previous interrupt posture. */ TX_RESTORE /* Perform any additional activities for tool or user purpose. */ TX_THREAD_CREATE_EXTENSION(thread_ptr) /* Call the resume thread function to make this thread ready. */ _tx_thread_system_resume(thread_ptr);/* ... */ #endif /* Determine if the thread's preemption-threshold needs to be restored. */ if (saved_thread_ptr != TX_NULL) { /* Yes, restore the previous highest-priority thread's preemption-threshold. This can only happen if this routine is called from initialization. *//* ... */ 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 /* Perform any additional activities for tool or user purpose. */ TX_THREAD_CREATE_EXTENSION(thread_ptr) /* Restore interrupts. */ TX_RESTORE/* ... */ #else /* Restore interrupts. */ TX_RESTORE /* Perform any additional activities for tool or user purpose. */ TX_THREAD_CREATE_EXTENSION(thread_ptr) /* Disable interrupts. */ TX_DISABLE /* Re-enable preemption. */ _tx_thread_preempt_disable--; /* Restore interrupts. */ TX_RESTORE /* Check for preemption. */ _tx_thread_system_preempt_check();/* ... */ #endif }else { ... } /* ... */ #endif /* TX_THREAD_SMP */ /* Return success. */ 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) { ... } ...
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.