vm-flags.h 336 B

12345678910111213141516171819
  1. /*
  2. * Copyright (C) 2004 Jeff Dike ([email protected])
  3. * Copyright 2003 PathScale, Inc.
  4. * Licensed under the GPL
  5. */
  6. #ifndef __VM_FLAGS_X86_H
  7. #define __VM_FLAGS_X86_H
  8. #ifdef CONFIG_X86_32
  9. #define VM_DATA_DEFAULT_FLAGS VM_DATA_FLAGS_TSK_EXEC
  10. #else
  11. #define VM_STACK_DEFAULT_FLAGS (VM_GROWSDOWN | VM_DATA_FLAGS_EXEC)
  12. #endif
  13. #endif