[PATCH] uml: move libc-dependent code from trap_user.c
The serial UML OS-abstraction layer patch (um/kernel dir). This moves all systemcalls from trap_user.c file under os-Linux dir Signed-off-by: Gennady Sharapov <Gennady.V.Sharapov@intel.com> Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:

committed by
Linus Torvalds

parent
0805d89c15
commit
ea2ba7dc3d
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
/*
|
||||
* Copyright (C) 2000, 2001 Jeff Dike (jdike@karaya.com)
|
||||
* Licensed under the GPL
|
||||
*/
|
||||
@@ -29,6 +29,7 @@
|
||||
#ifdef CONFIG_MODE_SKAS
|
||||
#include "skas.h"
|
||||
#endif
|
||||
#include "os.h"
|
||||
|
||||
/* Note this is constrained to return 0, -EFAULT, -EACCESS, -ENOMEM by segv(). */
|
||||
int handle_page_fault(unsigned long address, unsigned long ip,
|
||||
@@ -125,6 +126,14 @@ out_of_memory:
|
||||
goto out;
|
||||
}
|
||||
|
||||
struct kern_handlers handlinfo_kern = {
|
||||
.relay_signal = relay_signal,
|
||||
.winch = winch,
|
||||
.bus_handler = relay_signal,
|
||||
.page_fault = segv_handler,
|
||||
.sigio_handler = sigio_handler,
|
||||
.timer_handler = timer_handler
|
||||
};
|
||||
/*
|
||||
* We give a *copy* of the faultinfo in the regs to segv.
|
||||
* This must be done, since nesting SEGVs could overwrite
|
||||
|
Reference in New Issue
Block a user