blob: c5513a26b80d0ac194508eac5f077a041e078d51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* $NetBSD: linux_emuldata.h,v 1.1 1998/12/08 21:00:11 erh Exp $ */
#ifndef _COMMON_LINUX_EMULDATA_H
#define _COMMON_LINUX_EMULDATA_H
/*
* This is auxillary data the linux compat code
* needs to do its work. A pointer to it is
* stored in the emuldata field of the proc
* structure. (NOTYET)
*/
struct linux_emuldata {
sigset_t ps_siginfo; /* Which signals have a RT handler */
};
#endif /* !_COMMON_LINUX_EMULDATA_H */
|