Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * Copyright (C) 2004 Jeff Dike (jdike@addtoit.com)
0003  * Copyright 2003 PathScale, Inc.
0004  * Licensed under the GPL
0005  */
0006 
0007 #ifndef __VM_FLAGS_X86_H
0008 #define __VM_FLAGS_X86_H
0009 
0010 #ifdef CONFIG_X86_32
0011 
0012 #define VM_DATA_DEFAULT_FLAGS   VM_DATA_FLAGS_TSK_EXEC
0013 
0014 #else
0015 
0016 #define VM_STACK_DEFAULT_FLAGS (VM_GROWSDOWN | VM_DATA_FLAGS_EXEC)
0017 
0018 #endif
0019 #endif