remove function prototypes of sa_awaken.

This commit is contained in:
yamt 2007-02-10 14:02:01 +00:00
parent 1472d08a88
commit 997a2a3c4f
2 changed files with 4 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_sleepq.c,v 1.2 2007/02/09 21:55:31 ad Exp $ */
/* $NetBSD: kern_sleepq.c,v 1.3 2007/02/10 14:02:01 yamt Exp $ */
/*-
* Copyright (c) 2006, 2007 The NetBSD Foundation, Inc.
@ -42,7 +42,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_sleepq.c,v 1.2 2007/02/09 21:55:31 ad Exp $");
__KERNEL_RCSID(0, "$NetBSD: kern_sleepq.c,v 1.3 2007/02/10 14:02:01 yamt Exp $");
#include "opt_multiprocessor.h"
#include "opt_lockdebug.h"
@ -64,7 +64,6 @@ __KERNEL_RCSID(0, "$NetBSD: kern_sleepq.c,v 1.2 2007/02/09 21:55:31 ad Exp $");
int sleepq_sigtoerror(struct lwp *, int);
void updatepri(struct lwp *);
void sa_awaken(struct lwp *);
/* General purpose sleep table, used by ltsleep() and condition variables. */
sleeptab_t sleeptab;

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_synch.c,v 1.175 2007/02/10 02:55:18 christos Exp $ */
/* $NetBSD: kern_synch.c,v 1.176 2007/02/10 14:02:01 yamt Exp $ */
/*-
* Copyright (c) 1999, 2000, 2004, 2006, 2007 The NetBSD Foundation, Inc.
@ -74,7 +74,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_synch.c,v 1.175 2007/02/10 02:55:18 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: kern_synch.c,v 1.176 2007/02/10 14:02:01 yamt Exp $");
#include "opt_ddb.h"
#include "opt_kstack.h"
@ -116,7 +116,6 @@ volatile uint32_t sched_whichqs; /* bitmap of non-empty queues */
void schedcpu(void *);
void updatepri(struct lwp *);
void sa_awaken(struct lwp *);
void sched_unsleep(struct lwp *);
void sched_changepri(struct lwp *, int);