Changeset 281b607 in mainline for arch/mips32/src/mips32.c


Ignore:
Timestamp:
2006-03-23T10:29:39Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a0bb10ef
Parents:
9aa72b4
Message:

Added basic kernel infrastructure for ThreadLocalStorage(TLS) for
ia32(complete),amd64(complete),mips32(missing emulation of rdhwr instruction).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/src/mips32.c

    r9aa72b4 r281b607  
    4040#include <proc/uarg.h>
    4141#include <print.h>
     42#include <syscall/syscall.h>
    4243
    4344#include <arch/interrupt.h>
     
    142143{
    143144}
     145
     146/** Set Thread-local-storeage pointer
     147 *
     148 * We have it currently in K1, it is
     149 * possible to have it separately in the future.
     150 */
     151__native sys_tls_set(__native addr)
     152{
     153        return 0;
     154}
Note: See TracChangeset for help on using the changeset viewer.