Changeset 7bb6b06 in mainline for kernel/arch/sparc64/include


Ignore:
Timestamp:
2006-09-10T21:21:39Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9a5b556
Parents:
208fa65
Message:

Small improvements here and there.

Location:
kernel/arch/sparc64/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/include/asm.h

    r208fa65 r7bb6b06  
    223223        uintptr_t v;
    224224       
    225         __asm__ volatile ("and %%sp, %1, %0\n" : "=r" (v) : "r" (~(STACK_SIZE-1)));
     225        __asm__ volatile ("andn %%sp, %1, %0\n" : "=r" (v) : "r" (STACK_SIZE-1));
    226226       
    227227        return v;
  • kernel/arch/sparc64/include/trap/exception.h

    r208fa65 r7bb6b06  
    5151#include <typedefs.h>
    5252
     53extern void dump_istate(istate_t *istate);
     54
    5355extern void instruction_access_exception(int n, istate_t *istate);
    5456extern void instruction_access_error(int n, istate_t *istate);
Note: See TracChangeset for help on using the changeset viewer.