Linux Kernel
3.7.1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
arch
s390
kernel
compat_exec_domain.c
Go to the documentation of this file.
1
/*
2
* Support for 32-bit Linux for S390 personality.
3
*
4
* Copyright IBM Corp. 2000
5
* Author(s): Gerhard Tonn (
[email protected]
)
6
*
7
*
8
*/
9
10
#include <linux/kernel.h>
11
#include <
linux/init.h
>
12
#include <linux/personality.h>
13
#include <linux/sched.h>
14
15
static
struct
exec_domain
s390_exec_domain;
16
17
static
int
__init
s390_init (
void
)
18
{
19
s390_exec_domain.name =
"Linux/s390"
;
20
s390_exec_domain.handler =
NULL
;
21
s390_exec_domain.pers_low =
PER_LINUX32
;
22
s390_exec_domain.pers_high =
PER_LINUX32
;
23
s390_exec_domain.signal_map =
default_exec_domain
.signal_map;
24
s390_exec_domain.signal_invmap =
default_exec_domain
.signal_invmap;
25
register_exec_domain
(&s390_exec_domain);
26
return
0;
27
}
28
29
__initcall
(s390_init);
Generated on Thu Jan 10 2013 13:16:47 for Linux Kernel by
1.8.2