kernel/exec_domain.c

Source file repositories/reference/linux-study-clean/kernel/exec_domain.c

File Facts

System
Linux kernel
Corpus path
kernel/exec_domain.c
Extension
.c
Size
1094 bytes
Lines
47
Domain
Core OS
Bucket
Scheduler, Processes, Timers, Sync, And Syscalls
Inferred role
Core OS: syscall or user/kernel boundary
Status
core implementation candidate

Why This File Exists

Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.

Dependency Surface

Detected Declarations

Annotated Snippet

SYSCALL_DEFINE1(personality, unsigned int, personality)
{
	unsigned int old = current->personality;

	if (personality != 0xffffffff)
		set_personality(personality);

	return old;
}

Annotation

Implementation Notes