Files
Chromebook-Device-Nyan-NVID…/include/linux/mmu_context.h
2025-04-06 23:50:55 -05:00

10 lines
158 B
C

#ifndef _LINUX_MMU_CONTEXT_H
#define _LINUX_MMU_CONTEXT_H
struct mm_struct;
void use_mm(struct mm_struct *mm);
void unuse_mm(struct mm_struct *mm);
#endif