x86, um: take arch/um/include/* out of the way
[linux-2.6/mini2440.git] / arch / um / include / shared / process.h
blobbb873a51262e5a6707ae434e478b9bc13cbfe413
1 /*
2 * Copyright (C) 2000 - 2008 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
4 */
6 #ifndef __PROCESS_H__
7 #define __PROCESS_H__
9 #include <signal.h>
11 /* Copied from linux/compiler-gcc.h since we can't include it directly */
12 #define barrier() __asm__ __volatile__("": : :"memory")
14 extern void sig_handler(int sig, struct sigcontext *sc);
15 extern void alarm_handler(int sig, struct sigcontext *sc);
17 #endif