Verified Commit 9028a352 authored by Tunahan Kaya's avatar Tunahan Kaya Committed by Marc Vef
Browse files

renamed global directory into common & edited occurences accordingly

parent 8e0a60d2
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -178,7 +178,7 @@ add_definitions(-DLIBGKFS_LOG_MESSAGE_SIZE=${CLIENT_LOG_MESSAGE_SIZE})
message(STATUS "[gekkofs] Maximum log message size in the client library: ${CLIENT_LOG_MESSAGE_SIZE}")
mark_as_advanced(CLIENT_LOG_MESSAGE_SIZE)

configure_file(include/global/cmake_configure.hpp.in include/global/cmake_configure.hpp)
configure_file(include/common/cmake_configure.hpp.in include/common/cmake_configure.hpp)

# Imported target
add_library(RocksDB INTERFACE IMPORTED GLOBAL)
@@ -235,8 +235,8 @@ include_directories(

include(GNUInstallDirs)

# Global components
add_subdirectory(src/global)
# Common components
add_subdirectory(src/common)
# Daemon
add_subdirectory(src/daemon)
# Client library
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@
#define GEKKOFS_GKFS_FUNCTIONS_HPP

#include <client/open_file_map.hpp>
#include <global/metadata.hpp>
#include <common/metadata.hpp>

struct statfs;
struct statvfs;
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@
#define GEKKOFS_PRELOAD_UTIL_HPP

#include <client/preload.hpp>
#include <global/metadata.hpp>
#include <common/metadata.hpp>

#include <string>
#include <iostream>
+2 −2
Original line number Diff line number Diff line
@@ -46,8 +46,8 @@
#endif


#include <global/global_defs.hpp>
#include <global/rpc/rpc_types.hpp>
#include <common/global_defs.hpp>
#include <common/rpc/rpc_types.hpp>

namespace hermes {
namespace detail {
Loading