1 /**************************************************************************/
2 /* */
3 /* Copyright (c) Microsoft Corporation. All rights reserved. */
4 /* */
5 /* This software is licensed under the Microsoft Software License */
6 /* Terms for Microsoft Azure RTOS. Full text of the license can be */
7 /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
8 /* and in the root directory of this software. */
9 /* */
10 /**************************************************************************/
11
12
13 /**************************************************************************/
14 /**************************************************************************/
15 /** */
16 /** POSIX wrapper for THREADX */
17 /** */
18 /** */
19 /** */
20 /**************************************************************************/
21 /**************************************************************************/
22
23 /* Include necessary system files. */
24
25 #include "tx_api.h" /* Threadx API */
26 #include "pthread.h" /* Posix API */
27 #include "px_int.h" /* Posix helper functions */
28
29 /**************************************************************************/
30 /* */
31 /* FUNCTION RELEASE */
32 /* */
33 /* set_default_pthread_attr PORTABLE C */
34 /* 6.1.7 */
35 /* AUTHOR */
36 /* */
37 /* William E. Lamie, Microsoft Corporation */
38 /* */
39 /* DESCRIPTION */
40 /* */
41 /* This function sets default pthread attr w/ default information. */
42 /* */
43 /* INPUT */
44 /* */
45 /* attr pthread attr object pointer */
46 /* */
47 /* OUTPUT */
48 /* */
49 /* None */
50 /* */
51 /* CALLS */
52 /* */
53 /* None */
54 /* */
55 /* CALLED BY */
56 /* */
57 /* Start-up code */
58 /* */
59 /* RELEASE HISTORY */
60 /* */
61 /* DATE NAME DESCRIPTION */
62 /* */
63 /* 06-02-2021 William E. Lamie Initial Version 6.1.7 */
64 /* */
65 /**************************************************************************/
set_default_pthread_attr(pthread_attr_t * attr)66 VOID set_default_pthread_attr(pthread_attr_t *attr)
67 {
68 attr->detach_state =PTHREAD_CREATE_JOINABLE;
69 attr->inherit_sched =0;
70 attr->inuse =TX_TRUE;
71 attr->pthread_flags =0;
72 attr->sched_attr.sched_priority =31;
73 attr->sched_policy =0;
74 attr->stack_address =0;
75 attr->stack_size = TX_DEFAULT_THREAD_STACK_SIZE;
76 }
77