You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
429 B
18 lines
429 B
![]()
20 years ago
|
/*
|
||
![]()
17 years ago
|
* Copyright (C) 2000 - 2008 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
||
![]()
20 years ago
|
* Licensed under the GPL
|
||
|
*/
|
||
|
|
||
|
#ifndef __PROCESS_H__
|
||
|
#define __PROCESS_H__
|
||
|
|
||
|
#include <signal.h>
|
||
|
|
||
![]()
17 years ago
|
/* Copied from linux/compiler-gcc.h since we can't include it directly */
|
||
|
#define barrier() __asm__ __volatile__("": : :"memory")
|
||
|
|
||
![]()
17 years ago
|
extern void sig_handler(int sig, struct sigcontext *sc);
|
||
|
extern void alarm_handler(int sig, struct sigcontext *sc);
|
||
![]()
20 years ago
|
|
||
|
#endif
|