Unverified Commit e4381611 authored by Tommaso Tocci's avatar Tommaso Tocci
Browse files

remove unused "minimal rpc"

parent 60b84401
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -8,8 +8,6 @@ extern "C" {

/* visible API for RPC operations */

DECLARE_MARGO_RPC_HANDLER(rpc_minimal)

DECLARE_MARGO_RPC_HANDLER(ipc_srv_fs_config)

DECLARE_MARGO_RPC_HANDLER(rpc_srv_mk_node)
+0 −1
Original line number Diff line number Diff line
@@ -6,7 +6,6 @@
// These constexpr set the RPC's identity and which handler the receiver end should use
namespace hg_tag {
    constexpr auto fs_config = "ipc_srv_fs_config";
    constexpr auto minimal = "rpc_minimal";
    constexpr auto create = "rpc_srv_mk_node";
    constexpr auto access = "rpc_srv_access";
    constexpr auto stat = "rpc_srv_stat";
+0 −3
Original line number Diff line number Diff line
@@ -9,9 +9,6 @@ extern "C" {

/* visible API for RPC data types used in RPCS */

MERCURY_GEN_PROC(rpc_minimal_in_t, ((int32_t) (input)))

MERCURY_GEN_PROC(rpc_minimal_out_t, ((int32_t) (output)))
// misc generic rpc types
MERCURY_GEN_PROC(rpc_err_out_t, ((hg_int32_t) (err)))

+0 −1
Original line number Diff line number Diff line
@@ -29,7 +29,6 @@ struct MetadentryUpdateFlags {
extern margo_instance_id ld_margo_rpc_id;
// RPC IDs
extern hg_id_t rpc_config_id;
extern hg_id_t rpc_minimal_id;
extern hg_id_t rpc_mk_node_id;
extern hg_id_t rpc_stat_id;
extern hg_id_t rpc_access_id;
+0 −3
Original line number Diff line number Diff line
@@ -2,9 +2,6 @@
#ifndef IFS_MARGO_IPC_HPP
#define IFS_MARGO_IPC_HPP

#include <margo.h>

void send_minimal_ipc(const hg_id_t minimal_id);

bool ipc_send_get_fs_config();

Loading