Changeset 4f205248 in mainline for uspace/lib/c/arch/ia64/src/tls.c
- Timestamp:
- 2018-04-23T18:50:40Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a2eb85d
- Parents:
- 8d58fca
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-04-23 17:47:09)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-04-23 18:50:40)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/ia64/src/tls.c
r8d58fca r4f205248 37 37 #include <tls.h> 38 38 39 tcb_t *tls_alloc_arch( void **data, size_t size)39 tcb_t *tls_alloc_arch(size_t size, size_t align) 40 40 { 41 return tls_alloc_variant_1( data, size);41 return tls_alloc_variant_1(size, align); 42 42 } 43 43 44 void tls_free_arch(tcb_t *tcb, size_t size )44 void tls_free_arch(tcb_t *tcb, size_t size, size_t align) 45 45 { 46 tls_free_variant_1(tcb, size );46 tls_free_variant_1(tcb, size, align); 47 47 } 48 48
Note:
See TracChangeset
for help on using the changeset viewer.