Release 4.12 include/linux/personality.h
#ifndef _LINUX_PERSONALITY_H
#define _LINUX_PERSONALITY_H
#include <uapi/linux/personality.h>
/*
* Return the base personality without flags.
*/
#define personality(pers) (pers & PER_MASK)
/*
* Change personality of the currently running process.
*/
#define set_personality(pers) (current->personality = (pers))
#endif /* _LINUX_PERSONALITY_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 14 | 50.00% | 1 | 20.00% |
Linus Torvalds (pre-git) | 10 | 35.71% | 2 | 40.00% |
David Howells | 3 | 10.71% | 1 | 20.00% |
Richard Weinberger | 1 | 3.57% | 1 | 20.00% |
Total | 28 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.