Linux Audio
Check our new training course
Embedded Linux Audio
1 2 3 4 5 6 7 8 9 10 11 12
#ifndef __i386_MMU_H #define __i386_MMU_H /* * The i386 doesn't have a mmu context, but * we put the segment information here. */ typedef struct { void *segments; } mm_context_t; #endif