]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - include/linux/personality.h
UBUNTU: Ubuntu-4.10.0-37.41
[mirror_ubuntu-zesty-kernel.git] / include / linux / personality.h
1 #ifndef _LINUX_PERSONALITY_H
2 #define _LINUX_PERSONALITY_H
3
4 #include <uapi/linux/personality.h>
5
6 /*
7 * Return the base personality without flags.
8 */
9 #define personality(pers) (pers & PER_MASK)
10
11 /*
12 * Change personality of the currently running process.
13 */
14 #define set_personality(pers) (current->personality = (pers))
15
16 #endif /* _LINUX_PERSONALITY_H */