- Add m68k pendant of: r27529 & r27778 - handle skipIframes parameter

r27530 - allow faults with ints disabled if there is a handler
r27648 - call the end-of-interrupt thread callback
r27718 - add <asm_defs.h>, not used yet
r27722 - register the commpage as image and symbols (but we don't use it yet)
- remove dupped call to thread_get_current_thread()
- use 16MB iospace for now, 4MB seems too small.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27999 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol
2008-10-12 18:13:11 +00:00
parent 5bb2204e46
commit 5222f12a32
6 changed files with 71 additions and 5 deletions
@@ -0,0 +1,17 @@
/*
* Copyright 2008, François Revol, [email protected].
* Distributed under the terms of the MIT License.
*/
#ifndef SYSTEM_ARCH_M68K_ASM_DEFS_H
#define SYSTEM_ARCH_M68K_ASM_DEFS_H
#define SYMBOL(name) .global name; name
#define SYMBOL_END(name) 1: .size name, 1b - name
#define STATIC_FUNCTION(name) .type name, @function; name
#define FUNCTION(name) .global name; .type name, @function; name
#define FUNCTION_END(name) 1: .size name, 1b - name
#endif /* SYSTEM_ARCH_M68K_ASM_DEFS_H */