1nbd_aio_is_dead(3) LIBNBD nbd_aio_is_dead(3)
2
3
4
6 nbd_aio_is_dead - check if the connection is dead
7
9 #include <libnbd.h>
10
11 int nbd_aio_is_dead (
12 struct nbd_handle *h
13 );
14
16 Return true if the connection has encountered a fatal error and is
17 dead. In this state the handle may only be closed. There is no way to
18 recover a handle from the dead state.
19
21 This call returns a boolean value.
22
24 This function does not fail.
25
26 The following parameters must not be NULL: "h". For more information
27 see "Non-NULL parameters" in libnbd(3).
28
30 This function first appeared in libnbd 1.0.
31
32 If you need to test if this function is available at compile time check
33 if the following macro is defined:
34
35 #define LIBNBD_HAVE_NBD_AIO_IS_DEAD 1
36
38 nbd_create(3), libnbd(3).
39
41 Eric Blake
42
43 Richard W.M. Jones
44
46 Copyright Red Hat
47
49 This library is free software; you can redistribute it and/or modify it
50 under the terms of the GNU Lesser General Public License as published
51 by the Free Software Foundation; either version 2 of the License, or
52 (at your option) any later version.
53
54 This library is distributed in the hope that it will be useful, but
55 WITHOUT ANY WARRANTY; without even the implied warranty of
56 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
57 Lesser General Public License for more details.
58
59 You should have received a copy of the GNU Lesser General Public
60 License along with this library; if not, write to the Free Software
61 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
62 02110-1301 USA
63
64
65
66libnbd-1.16.5 2023-09-26 nbd_aio_is_dead(3)