Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / common / pipe.h
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3 /*
4  * Ceph - scalable distributed file system
5  *
6  * Copyright (C) 2011 New Dream Network
7  *
8  * This is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License version 2.1, as published by the Free Software
11  * Foundation.  See file COPYING.
12  *
13  */
14
15 #ifndef CEPH_COMMON_PIPE_H
16 #define CEPH_COMMON_PIPE_H
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21
22 /** Create a pipe and set both ends to have F_CLOEXEC
23  *
24  * @param pipefd        pipe array, just as in pipe(2)
25  * @return              0 on success, errno otherwise 
26  */
27 int pipe_cloexec(int pipefd[2]);
28
29 #ifdef __cplusplus
30 }
31 #endif
32
33 #endif