uml: track and make up lost ticks
[pandora-kernel.git] / arch / um / include / process.h
1 /* 
2  * Copyright (C) 2000 - 2008 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3  * Licensed under the GPL
4  */
5
6 #ifndef __PROCESS_H__
7 #define __PROCESS_H__
8
9 #include <signal.h>
10
11 /* Copied from linux/compiler-gcc.h since we can't include it directly */
12 #define barrier() __asm__ __volatile__("": : :"memory")
13
14 extern void sig_handler(int sig, struct sigcontext *sc);
15 extern void alarm_handler(int sig, struct sigcontext *sc);
16
17 #endif