Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _LINUX_PERSONALITY_H
0003 #define _LINUX_PERSONALITY_H
0004 
0005 #include <uapi/linux/personality.h>
0006 
0007 /*
0008  * Return the base personality without flags.
0009  */
0010 #define personality(pers)   (pers & PER_MASK)
0011 
0012 /*
0013  * Change personality of the currently running process.
0014  */
0015 #define set_personality(pers)   (current->personality = (pers))
0016 
0017 #endif /* _LINUX_PERSONALITY_H */