OSDN Git Service

(split) Import translated manuals from JM CVS Repository.
[linuxjm/LDP_man-pages.git] / original / man2 / personality.2
1 .\" Copyright (C) 1995, Thomas K. Dyas <tdyas@eden.rutgers.edu>
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one.
11 .\"
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein.  The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\"
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\"
23 .\" Created   Sat Aug 21 1995     Thomas K. Dyas <tdyas@eden.rutgers.edu>
24 .\"
25 .\" typo corrected, aeb, 950825
26 .\" added layout change from joey, 960722
27 .\" changed prototype, documented 0xffffffff, aeb, 030101
28 .\" Modified 2004-11-03 patch from Martin Schulze <joey@infodrom.org>
29 .\"
30 .TH PERSONALITY 2 2003-01-01 "Linux" "Linux Programmer's Manual"
31 .SH NAME
32 personality \- set the process execution domain
33 .SH SYNOPSIS
34 .B #include <sys/personality.h>
35 .sp
36 .BI "int personality(unsigned long " persona );
37 .SH DESCRIPTION
38 Linux supports different execution domains, or personalities, for each
39 process.
40 Among other things, execution domains tell Linux how to map
41 signal numbers into signal actions.
42 The execution domain system allows
43 Linux to provide limited support for binaries compiled under other
44 Unix-like operating systems.
45
46 This function will return the current
47 .BR personality ()
48 when
49 .I persona
50 equals 0xffffffff.
51 Otherwise, it will make the execution domain
52 referenced by
53 .I persona
54 the new execution domain of the calling process.
55 .SH "RETURN VALUE"
56 On success, the previous
57 .I persona
58 is returned.
59 On error, \-1 is returned, and
60 .I errno
61 is set appropriately.
62 .SH ERRORS
63 .TP
64 .B EINVAL
65 The kernel was unable to change the personality.
66 .SH "CONFORMING TO"
67 .BR personality ()
68 is Linux-specific and should not be used in programs intended to
69 be portable.