src/os/bsd/vm/perfMemory_bsd.cpp

Print this page


   1 /*
   2  * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *


  43 # include <signal.h>
  44 # include <pwd.h>
  45 
  46 static char* backing_store_file_name = NULL;  // name of the backing store
  47                                               // file, if successfully created.
  48 
  49 // Standard Memory Implementation Details
  50 
  51 // create the PerfData memory region in standard memory.
  52 //
  53 static char* create_standard_memory(size_t size) {
  54 
  55   // allocate an aligned chuck of memory
  56   char* mapAddress = os::reserve_memory(size);
  57 
  58   if (mapAddress == NULL) {
  59     return NULL;
  60   }
  61 
  62   // commit memory
  63   if (!os::commit_memory(mapAddress, size)) {
  64     if (PrintMiscellaneous && Verbose) {
  65       warning("Could not commit PerfData memory\n");
  66     }
  67     os::release_memory(mapAddress, size);
  68     return NULL;
  69   }
  70 
  71   return mapAddress;
  72 }
  73 
  74 // delete the PerfData memory region
  75 //
  76 static void delete_standard_memory(char* addr, size_t size) {
  77 
  78   // there are no persistent external resources to cleanup for standard
  79   // memory. since DestroyJavaVM does not support unloading of the JVM,
  80   // cleanup of the memory resource is not performed. The memory will be
  81   // reclaimed by the OS upon termination of the process.
  82   //
  83   return;


   1 /*
   2  * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *


  43 # include <signal.h>
  44 # include <pwd.h>
  45 
  46 static char* backing_store_file_name = NULL;  // name of the backing store
  47                                               // file, if successfully created.
  48 
  49 // Standard Memory Implementation Details
  50 
  51 // create the PerfData memory region in standard memory.
  52 //
  53 static char* create_standard_memory(size_t size) {
  54 
  55   // allocate an aligned chuck of memory
  56   char* mapAddress = os::reserve_memory(size);
  57 
  58   if (mapAddress == NULL) {
  59     return NULL;
  60   }
  61 
  62   // commit memory
  63   if (!os::commit_memory(mapAddress, size, !ExecMem)) {
  64     if (PrintMiscellaneous && Verbose) {
  65       warning("Could not commit PerfData memory\n");
  66     }
  67     os::release_memory(mapAddress, size);
  68     return NULL;
  69   }
  70 
  71   return mapAddress;
  72 }
  73 
  74 // delete the PerfData memory region
  75 //
  76 static void delete_standard_memory(char* addr, size_t size) {
  77 
  78   // there are no persistent external resources to cleanup for standard
  79   // memory. since DestroyJavaVM does not support unloading of the JVM,
  80   // cleanup of the memory resource is not performed. The memory will be
  81   // reclaimed by the OS upon termination of the process.
  82   //
  83   return;