Move the clock_intr declaration.

This commit is contained in:
skrll 2011-01-20 19:47:40 +00:00
parent fee9f50344
commit b404656635
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: autoconf.h,v 1.17 2011/01/13 21:15:16 skrll Exp $ */
/* $NetBSD: autoconf.h,v 1.18 2011/01/20 19:47:40 skrll Exp $ */
/* $OpenBSD: autoconf.h,v 1.10 2001/05/05 22:33:42 art Exp $ */
@ -91,6 +91,4 @@ void pdc_scanbus(device_t, struct confargs *,
int mbprint(void *, const char *);
int mbsubmatch(device_t, struct cfdata *, const int *, void *);
int clock_intr(void *);
void dumpconf(void);

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.56 2011/01/17 12:42:41 skrll Exp $ */
/* $NetBSD: cpu.h,v 1.57 2011/01/20 19:47:40 skrll Exp $ */
/* $OpenBSD: cpu.h,v 1.55 2008/07/23 17:39:35 kettenis Exp $ */
@ -212,6 +212,8 @@ struct clockframe {
#define CLKF_INTR(framep) ((framep)->cf_flags & TFF_INTR)
#define CLKF_USERMODE(framep) ((framep)->cf_flags & T_USER)
int clock_intr(void *);
#define cpu_signotify(l) (setsoftast(l))
#define cpu_need_proftick(l) ((l)->l_pflag |= LP_OWEUPC, setsoftast(l))