X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Ffd-handle.cpp;fp=src%2Fcommon%2Ffd-handle.cpp;h=6bc1e9b5246e4ab3d6a7bfa0ef342e9c94edf065;hp=8a0d95243bcdfebf4035da2981ff13cbaed454d9;hb=28ab034a2c3582d07d3423d2d746731f87d3969f;hpb=52e345b9ac912d033c2a2c25a170a01cf209839d diff --git a/src/common/fd-handle.cpp b/src/common/fd-handle.cpp index 8a0d95243..6bc1e9b52 100644 --- a/src/common/fd-handle.cpp +++ b/src/common/fd-handle.cpp @@ -5,12 +5,13 @@ * */ -#include -#include - #include "fd-handle.hpp" + #include +#include +#include + struct fd_handle { struct urcu_ref ref; int fd; @@ -25,7 +26,7 @@ static void fd_handle_release(struct urcu_ref *ref) ret = close(handle->fd); if (ret == -1) { PERROR("Failed to close file descriptor of fd_handle upon release: fd = %d", - handle->fd); + handle->fd); } free(handle); @@ -37,7 +38,7 @@ struct fd_handle *fd_handle_create(int fd) if (fd < 0) { ERR("Attempted to create an fd_handle from an invalid file descriptor: fd = %d", - fd); + fd); goto end; } @@ -84,7 +85,8 @@ struct fd_handle *fd_handle_copy(const struct fd_handle *handle) const int new_fd = dup(handle->fd); if (new_fd < 0) { - PERROR("Failed to duplicate file descriptor while copying fd_handle: fd = %d", handle->fd); + PERROR("Failed to duplicate file descriptor while copying fd_handle: fd = %d", + handle->fd); goto end; }