Move the clock_intr declaration.
This commit is contained in:
parent
fee9f50344
commit
b404656635
|
@ -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 $ */
|
/* $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 mbprint(void *, const char *);
|
||||||
int mbsubmatch(device_t, struct cfdata *, const int *, void *);
|
int mbsubmatch(device_t, struct cfdata *, const int *, void *);
|
||||||
|
|
||||||
int clock_intr(void *);
|
|
||||||
|
|
||||||
void dumpconf(void);
|
void dumpconf(void);
|
||||||
|
|
|
@ -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 $ */
|
/* $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_INTR(framep) ((framep)->cf_flags & TFF_INTR)
|
||||||
#define CLKF_USERMODE(framep) ((framep)->cf_flags & T_USER)
|
#define CLKF_USERMODE(framep) ((framep)->cf_flags & T_USER)
|
||||||
|
|
||||||
|
int clock_intr(void *);
|
||||||
|
|
||||||
#define cpu_signotify(l) (setsoftast(l))
|
#define cpu_signotify(l) (setsoftast(l))
|
||||||
#define cpu_need_proftick(l) ((l)->l_pflag |= LP_OWEUPC, setsoftast(l))
|
#define cpu_need_proftick(l) ((l)->l_pflag |= LP_OWEUPC, setsoftast(l))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue