personality()函式 Unix/Linux


personality - 設定流程執行域

內容簡介

#include <sys/personality.h>

int personality(unsigned long persona);

描述

Linux supports different execution domains, or personalities, for each process. Among other things, execution domains tell Linux how to map signal numbers into signal actions. The execution domain system allows Linux to provide limited support for binaries compiled under other Unix-like operating systems.

This function will return the current personality() when persona equals 0xffffffff. Otherwise, it will make the execution domain referenced by persona the new execution domain of the current process.

返回值

On success, the previous persona is returned. On error, -1 is returned, and errno is set appropriately.

錯誤

標籤 描述
EINVAL The kernel was unable to change the personality.

遵循於

personality() 是Linux特有的,應在擬移植的程式不能使用。