Changeset fa23560 in mainline for uspace/lib/libc/arch/arm32/src/tls.c
- Timestamp:
- 2007-10-30T22:54:11Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4d21cf8
- Parents:
- b2a0f6dd
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/arch/arm32/src/tls.c
rb2a0f6dd rfa23560 33 33 */ 34 34 /** @file 35 * @brief Uspace threads and TLS.36 35 */ 37 36 38 #include <t hread.h>39 #include < malloc.h>37 #include <tls.h> 38 #include <sys/types.h> 40 39 41 /** Allocates TLS & TCB.42 *43 * @param data Start of data section (output parameter).44 * @param size Size of (tbss + tdata) sections.45 * @return Pointer to the allocated #tcb_t structure.46 */47 40 tcb_t * __alloc_tls(void **data, size_t size) 48 41 { 49 tcb_t *result; 50 51 result = malloc(sizeof(tcb_t) + size); 52 *data = ((void *)result) + sizeof(tcb_t); 53 return result; 42 return tls_alloc_variant_1(data, size); 54 43 } 55 44 56 /** Deallocates TLS & TCB.57 *58 * @param tcb TCB structure to be deallocated (along with corresponding TLS).59 * @param size Not used.60 */61 45 void __free_tls_arch(tcb_t *tcb, size_t size) 62 46 { 63 free(tcb);47 tls_free_variant_1(tcb, size); 64 48 } 65 49
Note:
See TracChangeset
for help on using the changeset viewer.