cmogstored.git  about / heads / tags
alternative mogstored implementation for MogileFS
blob cacdd199a8aa94a0dde27727991cc3005aebeb11 733 bytes (raw)
$ git show HEAD:check.h	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 
/*
 * Copyright (C) 2012-2020 all contributors <cmogstored-public@yhbt.net>
 * License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 */

/* This header is only used by C test programs */
#ifdef NDEBUG
#  undef NDEBUG
#endif
#include "cmogstored.h"
#include <sys/ioctl.h>

static inline void pipe_or_die(int *fds)
{
	int rc = pipe(fds);

	assert(rc == 0 && "pipe failed");
}

static inline void socketpair_or_die(int *fds)
{
	int rc = socketpair(AF_UNIX, SOCK_STREAM, 0, fds);

	assert(rc == 0 && "socketpair failed");
}

static inline void close_pipe(int *fds)
{
	assert(0 == close(fds[0]) && "close(fd[0]) failed");
	assert(0 == close(fds[1]) && "close(fd[1]) failed");
}

/* stub for tests */
void cmogstored_quit(void) {}

git clone https://yhbt.net/cmogstored.git