Release 4.7 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 | linus torvalds | 14 | 50.00% | 1 | 20.00% |
pre-git | pre-git | 10 | 35.71% | 2 | 40.00% |
david howells | david howells | 3 | 10.71% | 1 | 20.00% |
richard weinberger | 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.