From: Jelle van der Waa Date: Mon, 2 Jun 2025 15:42:08 +0000 (+0200) Subject: io-util: rename 'nfds' -> 'n_fds' X-Git-Tag: v258-rc1~414^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa6f4484e8349efaeec07caf9d844b41edfabc7a;p=thirdparty%2Fsystemd.git io-util: rename 'nfds' -> 'n_fds' --- diff --git a/src/basic/io-util.c b/src/basic/io-util.c index 69c275ae179..82fad1303f9 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 f560b706b44..237a9ff77f7 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 b2a1c5c6156..5f7b6703891 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)