Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mobject-store
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
13
Issues
13
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sds
mobject-store
Commits
92ce2fb3
Commit
92ce2fb3
authored
Oct 17, 2017
by
Matthieu Dorier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
some changes in Makefiles.am and mobject-store.h
parent
75905650
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
9 deletions
+13
-9
Makefile.am
Makefile.am
+7
-1
include/mobject-store.h
include/mobject-store.h
+6
-8
No files found.
Makefile.am
View file @
92ce2fb3
...
...
@@ -9,10 +9,16 @@ AM_CXXFLAGS = $(AM_CFLAGS)
lib_LTLIBRARIES
=
libmobject-store.la
libmobject_store_la_SOURCES
=
src/libmobject-store.c
\
src/completion.c
\
src/write-op.c
\
src/completion.h
\
src/log.h
\
src/write-op.h
\
include/rados-mobject-store.h
\
include/mobject-store.h
include_HEADERS
=
include/mobject-store.h
libmobject_la_CPPFLAGS
=
-I
${srcdir}
/include
libmobject_la_CPPFLAGS
=
-I
${srcdir}
/include
-I
${srcdir}
/src
include
Make.rules
include/mobject-store.h
View file @
92ce2fb3
...
...
@@ -130,6 +130,8 @@ typedef void *mobject_store_omap_iter_t;
*/
typedef
void
*
mobject_store_write_op_t
;
#define MOBJECT_WRITE_OP_NULL ((void*)0)
/**
* @typedef mobject_store_read_op_t
*
...
...
@@ -152,6 +154,8 @@ typedef void *mobject_store_write_op_t;
*/
typedef
void
*
mobject_store_read_op_t
;
#define MOBJECT_READ_OP_NULL ((void*)0)
/**
* @typedef mobject_store_completion_t
* Represents the state of an asynchronous operation - it contains the
...
...
@@ -160,6 +164,8 @@ typedef void *mobject_store_read_op_t;
*/
typedef
void
*
mobject_store_completion_t
;
#define MOBJECT_COMPLETION_NULL ((void*)0)
/*****************************************
* mobject store setup/teardown routines *
*****************************************/
...
...
@@ -537,8 +543,6 @@ typedef void (*mobject_store_callback_t)(mobject_store_completion_t cb, void *ar
* complete callback, and vice versa. This is affected by journalling
* on the OSDs.
*
* TODO: more complete documentation of this elsewhere (in the RADOS docs?)
*
* @note Read operations only get a complete callback.
* @note BUG: this should check for ENOMEM instead of throwing an exception
*
...
...
@@ -586,9 +590,6 @@ int mobject_store_aio_is_complete(mobject_store_completion_t c);
*
* @pre The operation is safe or complete
*
* @note BUG: complete callback may never be called when the safe
* message is received before the complete message
*
* @param c async operation to inspect
* @returns return value of the operation
*/
...
...
@@ -604,11 +605,8 @@ int mobject_store_aio_get_return_value(mobject_store_completion_t c);
*/
void
mobject_store_aio_release
(
mobject_store_completion_t
c
);
#endif
#ifdef __cplusplus
}
#endif
#endif
/* __MOBJECT_STORE */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment