comparison src/os/linux/vm/os_linux.cpp @ 647:bd441136a5ce

Merge
author kvn
date Thu, 19 Mar 2009 09:13:24 -0700
parents 0fbdb4381b99 660978a2a31a
children 6bdd6923ba16
comparison
equal deleted inserted replaced
640:ba50942c8138 647:bd441136a5ce
2580 2580
2581 #ifndef SHM_HUGETLB 2581 #ifndef SHM_HUGETLB
2582 #define SHM_HUGETLB 04000 2582 #define SHM_HUGETLB 04000
2583 #endif 2583 #endif
2584 2584
2585 char* os::reserve_memory_special(size_t bytes) { 2585 char* os::reserve_memory_special(size_t bytes, char* req_addr) {
2586 assert(UseLargePages, "only for large pages"); 2586 assert(UseLargePages, "only for large pages");
2587 2587
2588 key_t key = IPC_PRIVATE; 2588 key_t key = IPC_PRIVATE;
2589 char *addr; 2589 char *addr;
2590 2590