From fa6f4484e8349efaeec07caf9d844b41edfabc7a Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Mon, 2 Jun 2025 17:42:08 +0200 Subject: [PATCH] io-util: rename 'nfds' -> 'n_fds' --- src/basic/io-util.c | 10 +++++----- src/basic/io-util.h | 6 +++--- src/basic/terminal-util.c | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/basic/io-util.c b/src/basic/io-util.c index 69c275ae17..82fad1303f 100644 --- a/src/basic/io-util.c +++ b/src/basic/io-util.c @@ -188,10 +188,10 @@ int pipe_eof(int fd) { return !!(r & POLLHUP); } -int ppoll_usec_full(struct pollfd *fds, size_t nfds, usec_t timeout, const sigset_t *ss) { +int ppoll_usec_full(struct pollfd *fds, size_t n_fds, usec_t timeout, const sigset_t *ss) { int r; - assert(fds || nfds == 0); + assert(fds || n_fds == 0); /* This is a wrapper around ppoll() that does primarily two things: * @@ -208,16 +208,16 @@ int ppoll_usec_full(struct pollfd *fds, size_t nfds, usec_t timeout, const sigse * to handle signals, such as signalfd() or signal handlers. ⚠️ ⚠️ ⚠️ */ - if (nfds == 0 && timeout == 0) + if (n_fds == 0 && timeout == 0) return 0; - r = ppoll(fds, nfds, timeout == USEC_INFINITY ? NULL : TIMESPEC_STORE(timeout), ss); + r = ppoll(fds, n_fds, timeout == USEC_INFINITY ? NULL : TIMESPEC_STORE(timeout), ss); if (r < 0) return -errno; if (r == 0) return 0; - for (size_t i = 0, n = r; i < nfds && n > 0; i++) { + for (size_t i = 0, n = r; i < n_fds && n > 0; i++) { if (fds[i].revents == 0) continue; if (fds[i].revents & POLLNVAL) diff --git a/src/basic/io-util.h b/src/basic/io-util.h index f560b706b4..237a9ff77f 100644 --- a/src/basic/io-util.h +++ b/src/basic/io-util.h @@ -15,9 +15,9 @@ static inline int loop_write(int fd, const void *buf, size_t nbytes) { int pipe_eof(int fd); -int ppoll_usec_full(struct pollfd *fds, size_t nfds, usec_t timeout, const sigset_t *ss) _nonnull_if_nonzero_(1, 2); -_nonnull_if_nonzero_(1, 2) static inline int ppoll_usec(struct pollfd *fds, size_t nfds, usec_t timeout) { - return ppoll_usec_full(fds, nfds, timeout, NULL); +int ppoll_usec_full(struct pollfd *fds, size_t n_fds, usec_t timeout, const sigset_t *ss) _nonnull_if_nonzero_(1, 2); +_nonnull_if_nonzero_(1, 2) static inline int ppoll_usec(struct pollfd *fds, size_t n_fds, usec_t timeout) { + return ppoll_usec_full(fds, n_fds, timeout, NULL); } int fd_wait_for_event(int fd, int event, usec_t timeout); diff --git a/src/basic/terminal-util.c b/src/basic/terminal-util.c index b2a1c5c615..5f7b670389 100644 --- a/src/basic/terminal-util.c +++ b/src/basic/terminal-util.c @@ -735,7 +735,7 @@ int acquire_terminal( .fd = notify, .events = POLLIN, }, - /* n_pollfds = */ 1, + /* n_fds = */ 1, left, &poll_ss); if (r < 0)