Release 4.18 include/linux/personality.h
/* SPDX-License-Identifier: GPL-2.0 */
#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 | 48.28% | 1 | 16.67% |
| Linus Torvalds (pre-git) | 10 | 34.48% | 2 | 33.33% |
| David Howells | 3 | 10.34% | 1 | 16.67% |
| Richard Weinberger | 1 | 3.45% | 1 | 16.67% |
| Greg Kroah-Hartman | 1 | 3.45% | 1 | 16.67% |
| Total | 29 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.