add /* nothing */ comment to cpu_wait()/cpu_swapout()

This commit is contained in:
jdolecek 2003-11-02 16:37:09 +00:00
parent 763d8350f0
commit 7d64ff943e

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.9 2003/09/27 21:32:12 is Exp $ */
/* $NetBSD: cpu.h,v 1.10 2003/11/02 16:37:09 jdolecek Exp $ */
/*
* Copyright (C) 1995-1997 Wolfgang Solfrank.
@ -60,8 +60,8 @@ void physaccess __P((caddr_t, caddr_t, int, int));
#define PROC_PC(p) (trapframe(p)->srr0)
#define cpu_swapout(p)
#define cpu_wait(p)
#define cpu_swapout(p) /* nothing */
#define cpu_wait(p) /* nothing */
#define cpu_number() 0
extern void delay __P((unsigned));