mem.c 773 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright 2003 PathScale, Inc.
  3. *
  4. * Licensed under the GPL
  5. */
  6. #include "linux/mm.h"
  7. #include "asm/page.h"
  8. #include "asm/mman.h"
  9. unsigned long vm_stack_flags = __VM_STACK_FLAGS;
  10. unsigned long vm_stack_flags32 = __VM_STACK_FLAGS;
  11. unsigned long vm_data_default_flags = __VM_DATA_DEFAULT_FLAGS;
  12. unsigned long vm_data_default_flags32 = __VM_DATA_DEFAULT_FLAGS;
  13. unsigned long vm_force_exec32 = PROT_EXEC;
  14. /* Overrides for Emacs so that we follow Linus's tabbing style.
  15. * Emacs will notice this stuff at the end of the file and automatically
  16. * adjust the settings for this buffer only. This must remain at the end
  17. * of the file.
  18. * ---------------------------------------------------------------------------
  19. * Local variables:
  20. * c-file-style: "linux"
  21. * End:
  22. */