Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys prototype adjustments for lwp_park, welcome to 6.99.19



details:   https://anonhg.NetBSD.org/src/rev/f69024c50895
branches:  trunk
changeset: 785747:f69024c50895
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Mar 29 01:09:45 2013 +0000

description:
prototype adjustments for lwp_park, welcome to 6.99.19

diffstat:

 sys/sys/lwp.h     |  4 ++--
 sys/sys/param.h   |  4 ++--
 sys/sys/timevar.h |  4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diffs (54 lines):

diff -r fd6346388b1b -r f69024c50895 sys/sys/lwp.h
--- a/sys/sys/lwp.h     Fri Mar 29 01:08:17 2013 +0000
+++ b/sys/sys/lwp.h     Fri Mar 29 01:09:45 2013 +0000
@@ -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_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. */
diff -r fd6346388b1b -r f69024c50895 sys/sys/param.h
--- a/sys/sys/param.h   Fri Mar 29 01:08:17 2013 +0000
+++ b/sys/sys/param.h   Fri Mar 29 01:09:45 2013 +0000
@@ -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__)
diff -r fd6346388b1b -r f69024c50895 sys/sys/timevar.h
--- a/sys/sys/timevar.h Fri Mar 29 01:08:17 2013 +0000
+++ b/sys/sys/timevar.h Fri Mar 29 01:09:45 2013 +0000
@@ -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   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 *);



Home | Main Index | Thread Index | Old Index