Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/rump/librump/rumpkern/sleepq.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/rump/librump/rumpkern/sleepq.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.18 retrieving revision 1.18.2.1 diff -u -p -r1.18 -r1.18.2.1 --- src/sys/rump/librump/rumpkern/sleepq.c 2020/03/26 22:40:10 1.18 +++ src/sys/rump/librump/rumpkern/sleepq.c 2020/04/20 11:29:13 1.18.2.1 @@ -1,4 +1,4 @@ -/* $NetBSD: sleepq.c,v 1.18 2020/03/26 22:40:10 ad Exp $ */ +/* $NetBSD: sleepq.c,v 1.18.2.1 2020/04/20 11:29:13 bouyer Exp $ */ /* * Copyright (c) 2008 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: sleepq.c,v 1.18 2020/03/26 22:40:10 ad Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sleepq.c,v 1.18.2.1 2020/04/20 11:29:13 bouyer Exp $"); #include #include @@ -62,7 +62,8 @@ sleepq_init(sleepq_t *sq) } void -sleepq_enqueue(sleepq_t *sq, wchan_t wc, const char *wmsg, syncobj_t *sob) +sleepq_enqueue(sleepq_t *sq, wchan_t wc, const char *wmsg, syncobj_t *sob, + bool catch_p) { struct lwp *l = curlwp;