Changeset e3c762cd in mainline for arch/sparc64/include/interrupt.h


Ignore:
Timestamp:
2006-05-05T11:59:19Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
de07bcf
Parents:
22cf454d
Message:

Complete implementation of copy_from_uspace() and copy_to_uspace()
for amd64 and ia32. Other architectures still compile and run,
but need to implement their own assembly-only memcpy(), memcpy_from_uspace(),
memcpy_to_uspace() and their failover parts. For these architectures
only dummy implementations are provided.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/sparc64/include/interrupt.h

    r22cf454d re3c762cd  
    3131
    3232#include <typedefs.h>
     33#include <arch/types.h>
    3334
    3435#define IRQ_COUNT       1       /* TODO */
     
    4445#define trap_virtual_eoi()
    4546
     47struct istate {
     48};
     49
     50static inline void istate_set_retaddr(istate_t *istate, __address retaddr)
     51{
     52        /* TODO */
     53}
     54
    4655extern void interrupt_register(int n, const char *name, iroutine f);
    4756
Note: See TracChangeset for help on using the changeset viewer.