Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
awilliam
GitHub Repository: awilliam/linux-vfio
Path: blob/master/arch/um/include/shared/process.h
10819 views
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
18
19