xref: /linux-6.15/arch/um/include/shared/skas/mm_id.h (revision 59376fb2)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (C) 2005 Jeff Dike ([email protected])
4  */
5 
6 #ifndef __MM_ID_H
7 #define __MM_ID_H
8 
9 struct mm_id {
10 	int pid;
11 	unsigned long stack;
12 	int syscall_data_len;
13 };
14 
15 void __switch_mm(struct mm_id *mm_idp);
16 
17 #endif
18