Changeset 26e7d6d in mainline for uspace/lib/c/arch/mips64/src/tls.c


Ignore:
Timestamp:
2011-09-19T16:31:00Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
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.
Message:

Merge mainline changes

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/mips64/src/tls.c

    r3842a955 r26e7d6d  
    2727 */
    2828
    29 /** @addtogroup libc
     29/** @addtogroup libcmips64
    3030 * @{
    3131 */
    3232/** @file
     33 * @ingroup libcmips64
    3334 */
    3435
    35 #ifndef LIBC_NS_OBSOLETE_H_
    36 #define LIBC_NS_OBSOLETE_H_
     36#include <tls.h>
     37#include <sys/types.h>
    3738
    38 #include <sys/types.h>
    39 #include <task.h>
     39tcb_t * __alloc_tls(void **data, size_t size)
     40{
     41        return tls_alloc_variant_1(data, size);
     42}
    4043
    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
     44void __free_tls_arch(tcb_t *tcb, size_t size)
     45{
     46        tls_free_variant_1(tcb, size);
     47}
    4648
    4749/** @}
Note: See TracChangeset for help on using the changeset viewer.