Module Name: src
Committed By: christos
Date: Fri Mar 29 01:09:45 UTC 2013
Modified Files:
src/sys/sys: lwp.h param.h timevar.h
Log Message:
prototype adjustments for lwp_park, welcome to 6.99.19
To generate a diff of this commit:
cvs rdiff -u -r1.167 -r1.168 src/sys/sys/lwp.h
cvs rdiff -u -r1.427 -r1.428 src/sys/sys/param.h
cvs rdiff -u -r1.32 -r1.33 src/sys/sys/timevar.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/sys/lwp.h
diff -u src/sys/sys/lwp.h:1.167 src/sys/sys/lwp.h:1.168
--- src/sys/sys/lwp.h:1.167 Wed Jan 2 14:39:04 2013
+++ src/sys/sys/lwp.h Thu Mar 28 21:09:45 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: lwp.h,v 1.167 2013/01/02 19:39:04 dsl Exp $ */
+/* $NetBSD: lwp.h,v 1.168 2013/03/29 01:09:45 christos Exp $ */
/*-
* Copyright (c) 2001, 2006, 2007, 2008, 2009, 2010
@@ -348,7 +348,7 @@ void *_lwp_getspecific_by_lwp(lwp_t *, s
void lwp_setspecific(specificdata_key_t, void *);
/* Syscalls. */
-int lwp_park(struct timespec *, const void *);
+int lwp_park(clockid_t, int, struct timespec *, const void *);
int lwp_unpark(lwpid_t, const void *);
/* DDB. */
Index: src/sys/sys/param.h
diff -u src/sys/sys/param.h:1.427 src/sys/sys/param.h:1.428
--- src/sys/sys/param.h:1.427 Thu Mar 21 16:05:56 2013
+++ src/sys/sys/param.h Thu Mar 28 21:09:45 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.427 2013/03/21 20:05:56 plunky Exp $ */
+/* $NetBSD: param.h,v 1.428 2013/03/29 01:09:45 christos Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@@ -63,7 +63,7 @@
* 2.99.9 (299000900)
*/
-#define __NetBSD_Version__ 699001800 /* NetBSD 6.99.18 */
+#define __NetBSD_Version__ 699001900 /* NetBSD 6.99.19 */
#define __NetBSD_Prereq__(M,m,p) (((((M) * 100000000) + \
(m) * 1000000) + (p) * 100) <= __NetBSD_Version__)
Index: src/sys/sys/timevar.h
diff -u src/sys/sys/timevar.h:1.32 src/sys/sys/timevar.h:1.33
--- src/sys/sys/timevar.h:1.32 Mon Oct 1 21:44:29 2012
+++ src/sys/sys/timevar.h Thu Mar 28 21:09:45 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: timevar.h,v 1.32 2012/10/02 01:44:29 christos Exp $ */
+/* $NetBSD: timevar.h,v 1.33 2013/03/29 01:09:45 christos Exp $ */
/*
* Copyright (c) 2005, 2008 The NetBSD Foundation.
@@ -145,7 +145,7 @@ void getnanotime(struct timespec *);
void getmicrotime(struct timeval *);
/* Other functions */
-int abstimeout2timo(struct timespec *, int *);
+int ts2timo(clockid_t, int, struct timespec *, int *, struct timespec *);
void adjtime1(const struct timeval *, struct timeval *, struct proc *);
int clock_getres1(clockid_t, struct timespec *);
int clock_gettime1(clockid_t, struct timespec *);