Verified Commit 719eeed4 authored by ANA MANZANO RODRIGUEZ's avatar ANA MANZANO RODRIGUEZ Committed by Alberto Miranda
Browse files

Update header files for register_adhoc_storage

parent c66b64f2
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -87,6 +87,8 @@ ADM_remove_job(ADM_server_t server, ADM_job_t job);
 * Register an adhoc storage system.
 *
 * @param[in] server The server to which the request is directed
 * @param[in] job An ADM_JOB identifying the originating job.
 * @param[in] user_id The desired user id for the adhoc storage system.
 * @param[in] ctx The EXECUTION_CONTEXT for the adhoc storage system.
 * @param[out] adhoc_storage An ADM_STORAGE referring to the newly-created
 * adhoc storage instance.
@@ -94,8 +96,8 @@ ADM_remove_job(ADM_server_t server, ADM_job_t job);
 * successfully.
 */
ADM_return_t
ADM_register_adhoc_storage(ADM_server_t server, ADM_job_t job, const char* id,
                           ADM_adhoc_context_t ctx,
ADM_register_adhoc_storage(ADM_server_t server, ADM_job_t job,
                           const char* user_id, ADM_adhoc_context_t ctx,
                           ADM_storage_t* adhoc_storage);

/**
+2 −1
Original line number Diff line number Diff line
@@ -57,7 +57,8 @@ ADM_return_t
remove_job(const server& srv, const job& job);

admire::adhoc_storage
register_adhoc_storage(const server& srv, const job& job, const std::string& id,
register_adhoc_storage(const server& srv, const job& job,
                       const std::string& user_id,
                       const adhoc_storage::ctx& ctx);

ADM_return_t