M7350/kernel/arch/um/include/shared/skas/mm_id.h

18 lines
209 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
/*
* Copyright (C) 2005 Jeff Dike (jdike@karaya.com)
* Licensed under the GPL
*/
#ifndef __MM_ID_H
#define __MM_ID_H
struct mm_id {
union {
int mm_fd;
int pid;
} u;
unsigned long stack;
};
#endif