include: replace linux/module.h with "struct module" wherever possible
[linux-2.6/next.git] / arch / um / sys-x86_64 / shared / sysdep / vm-flags.h
blob3978e55132d21fc81eb07d80b34d2b260eb815f8
1 /*
2 * Copyright (C) 2004 Jeff Dike (jdike@addtoit.com)
3 * Copyright 2003 PathScale, Inc.
4 * Licensed under the GPL
5 */
7 #ifndef __VM_FLAGS_X86_64_H
8 #define __VM_FLAGS_X86_64_H
10 #define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
11 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
12 #define VM_STACK_DEFAULT_FLAGS (VM_GROWSDOWN | VM_READ | VM_WRITE | \
13 VM_EXEC | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
15 #endif