Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mmu_context.h « linux « include - github.com/torvalds/linux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70fffeba7495802c4f0edf83738f2b95952e7e3d (plain)
1
2
3
4
5
6
7
8
9
#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