Skip to content
Snippets Groups Projects
Commit 7a001ea3 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

journal: remove unused

parent 2b14265f
No related branches found
No related tags found
No related merge requests found
......@@ -32,9 +32,6 @@
/*! \brief Infinite file size limit. */
#define FSLIMIT_INF (~((size_t)0))
/*! \brief Node classification macros. */
#define jnode_flags(j, i) ((j)->nodes[(i)].flags)
/*! \brief Next node. */
#define jnode_next(j, i) (((i) + 1) % (j)->max_nodes)
......@@ -57,10 +54,6 @@ static inline int sfwrite(const void *src, size_t len, int fd)
return write(fd, src, len) == len;
}
static inline journal_node_t *journal_end(journal_t *journal) {
return journal->nodes + journal->qtail;
}
/*! \brief Equality compare function. */
static inline int journal_cmp_eq(uint64_t k1, uint64_t k2)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment