< prev index next >

src/hotspot/os/linux/gc/z/zMountPoint_linux.hpp

Print this page

        

@@ -19,17 +19,17 @@
  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  */
 
-#ifndef OS_LINUX_GC_Z_ZBACKINGPATH_LINUX_HPP
-#define OS_LINUX_GC_Z_ZBACKINGPATH_LINUX_HPP
+#ifndef OS_LINUX_GC_Z_ZMOUNTPOINT_LINUX_HPP
+#define OS_LINUX_GC_Z_ZMOUNTPOINT_LINUX_HPP
 
 #include "gc/z/zArray.hpp"
 #include "memory/allocation.hpp"
 
-class ZBackingPath : public StackObj {
+class ZMountPoint : public StackObj {
 private:
   char* _path;
 
   char* get_mountpoint(const char* line,
                        const char* filesystem) const;

@@ -41,12 +41,12 @@
                                   const char** preferred_mountpoints) const;
   char* find_mountpoint(const char* filesystem,
                         const char** preferred_mountpoints) const;
 
 public:
-  ZBackingPath(const char* filesystem, const char** preferred_mountpoints);
-  ~ZBackingPath();
+  ZMountPoint(const char* filesystem, const char** preferred_mountpoints);
+  ~ZMountPoint();
 
   const char* get() const;
 };
 
-#endif // OS_LINUX_GC_Z_ZBACKINGPATH_LINUX_HPP
+#endif // OS_LINUX_GC_Z_ZMOUNTPOINT_LINUX_HPP
< prev index next >