prototype adjustments for lwp_park, welcome to 6.99.19

This commit is contained in:
christos 2013-03-29 01:09:45 +00:00
parent 4cec95f0ea
commit d727dbe767
3 changed files with 6 additions and 6 deletions

View File

@ -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 *, specificdata_key_t);
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. */

View File

@ -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__)

View File

@ -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 *);