DAOS API (v2.0)
Loading...
Searching...
No Matches
daos_api.h
Go to the documentation of this file.
1/*
2 * (C) Copyright 2015-2021 Intel Corporation.
3 *
4 * SPDX-License-Identifier: BSD-2-Clause-Patent
5 */
12#ifndef __DAOS_API_H__
13#define __DAOS_API_H__
14
15#if defined(__cplusplus)
16extern "C" {
17#endif
18
20enum {
22 DAOS_TF_RDONLY = (1 << 0),
32};
33
45d_rank_list_t *daos_rank_list_parse(const char *str, const char *sep);
46
47/*
48 * Transaction API
49 */
50
64int
65daos_tx_open(daos_handle_t coh, daos_handle_t *th, uint64_t flags,
66 daos_event_t *ev);
67
86int
88
104int
105daos_tx_open_snap(daos_handle_t coh, daos_epoch_t epoch, daos_handle_t *th,
106 daos_event_t *ev);
107
118int
120
130int
132
148int
150
165int
166daos_tx_hdl2epoch(daos_handle_t th, daos_epoch_t *epoch);
167
174static inline int
175daos_anchor_init(daos_anchor_t *anchor, unsigned int opts)
176{
177 daos_anchor_t _anchor = DAOS_ANCHOR_INIT;
178
179 *anchor = _anchor;
180 return 0;
181}
182
189static inline void
190daos_anchor_fini(daos_anchor_t *anchor)
191{
192 /* NOOP for now, might need to free memory */
193}
194
198static inline bool
199daos_anchor_is_eof(daos_anchor_t *anchor)
200{
201 return anchor->da_type == DAOS_ANCHOR_TYPE_EOF;
202}
203
204#if defined(__cplusplus)
205}
206#endif
207#endif /* __DAOS_API_H__ */
@ DAOS_TF_ZERO_COPY
Definition daos_api.h:31
@ DAOS_TF_RDONLY
Definition daos_api.h:22
int daos_tx_hdl2epoch(daos_handle_t th, daos_epoch_t *epoch)
int daos_tx_abort(daos_handle_t th, daos_event_t *ev)
int daos_tx_commit(daos_handle_t th, daos_event_t *ev)
int daos_tx_open(daos_handle_t coh, daos_handle_t *th, uint64_t flags, daos_event_t *ev)
d_rank_list_t * daos_rank_list_parse(const char *str, const char *sep)
int daos_tx_restart(daos_handle_t th, daos_event_t *ev)
int daos_tx_close(daos_handle_t th, daos_event_t *ev)
int daos_tx_open_snap(daos_handle_t coh, daos_epoch_t epoch, daos_handle_t *th, daos_event_t *ev)
uint16_t da_type
Definition daos_types.h:59