Changeset 26e7d6d in mainline for uspace/lib/c/arch/mips64/src/tls.c
- Timestamp:
- 2011-09-19T16:31:00Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a347a11
- Parents:
- 3842a955 (diff), 086290d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/mips64/src/tls.c
r3842a955 r26e7d6d 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libcmips64 30 30 * @{ 31 31 */ 32 32 /** @file 33 * @ingroup libcmips64 33 34 */ 34 35 35 #i fndef LIBC_NS_OBSOLETE_H_36 # define LIBC_NS_OBSOLETE_H_36 #include <tls.h> 37 #include <sys/types.h> 37 38 38 #include <sys/types.h> 39 #include <task.h> 39 tcb_t * __alloc_tls(void **data, size_t size) 40 { 41 return tls_alloc_variant_1(data, size); 42 } 40 43 41 extern int service_obsolete_connect(sysarg_t, sysarg_t, sysarg_t); 42 extern int service_obsolete_connect_blocking(sysarg_t, sysarg_t, 43 sysarg_t); 44 45 #endif 44 void __free_tls_arch(tcb_t *tcb, size_t size) 45 { 46 tls_free_variant_1(tcb, size); 47 } 46 48 47 49 /** @}
Note:
See TracChangeset
for help on using the changeset viewer.