Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.14 17 lines 257 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (C) 2005 Jeff Dike (jdike@karaya.com) 4 */ 5 6#ifndef __MM_ID_H 7#define __MM_ID_H 8 9struct mm_id { 10 int pid; 11 unsigned long stack; 12 int syscall_data_len; 13}; 14 15void __switch_mm(struct mm_id *mm_idp); 16 17#endif