Date: Mon, 7 Jun 2021 16:33:05 GMT From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 664aff03fae2 - stable/13 - kern_thread.c: wrap too long lines Message-ID: <202106071633.157GX5B0004125@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=664aff03fae2594e7db640c06c9edac5cb57bc7f commit 664aff03fae2594e7db640c06c9edac5cb57bc7f Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2021-05-25 18:09:33 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2021-06-07 16:32:42 +0000 kern_thread.c: wrap too long lines (cherry picked from commit 845d77974b3b6ab78297836ead2d2acbcdebeba7) --- sys/kern/kern_thread.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys/kern/kern_thread.c b/sys/kern/kern_thread.c index c16b6dd3c791..7370fd919203 100644 --- a/sys/kern/kern_thread.c +++ b/sys/kern/kern_thread.c @@ -541,7 +541,8 @@ threadinit(void) TASK_INIT(&thread_reap_task, 0, thread_reap_task_cb, NULL); callout_init(&thread_reap_callout, 1); - callout_reset(&thread_reap_callout, 5 * hz, thread_reap_callout_cb, NULL); + callout_reset(&thread_reap_callout, 5 * hz, + thread_reap_callout_cb, NULL); } /* @@ -704,7 +705,8 @@ thread_reap_callout_cb(void *arg __unused) if (wantreap) taskqueue_enqueue(taskqueue_thread, &thread_reap_task); - callout_reset(&thread_reap_callout, 5 * hz, thread_reap_callout_cb, NULL); + callout_reset(&thread_reap_callout, 5 * hz, + thread_reap_callout_cb, NULL); } /*
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202106071633.157GX5B0004125>