cregit-Linux how code gets into the kernel

Release 4.7 include/linux/personality.h

Directory: include/linux
#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

PersonTokensPropCommitsCommitProp
linus torvaldslinus torvalds1450.00%120.00%
pre-gitpre-git1035.71%240.00%
david howellsdavid howells310.71%120.00%
richard weinbergerrichard weinberger13.57%120.00%
Total28100.00%5100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}