Subject: machine/param.h
To: None <port-alpha@NetBSD.ORG>
From: Matthew Jacob <mjacob@feral.com>
List: port-alpha
Date: 10/02/1996 09:12:54
Umm, minor nit- the change describe below made it a bit easier
to compile a C++ app I had......
Is this the right venue to suggest changes?
*** /usr/src/sys/arch/alpha/include/param.h Sat Jul 13 18:16:51 1996
--- /usr/include/machine/param.h Wed Oct 2 08:43:13 1996
***************
*** 169,177 ****
int spl0 __P((void)); /* drop ipl to zero */
#endif
- #endif /* !_KERNEL */
int prtloc;
extern int ticks;
#define LOC() do { if (prtloc) printf("(%ld:%ld) %s: %d\n", curproc ? curproc->p_pid : -1, (long)ticks, __FILE__, __LINE__); } while (0)
#define PLOC(str) panic("XXX: (%ld:%ld) %s at %s: %d\n", curproc ? curproc->p_pid : -1, (long)ticks, str, __FILE__, __LINE__);
--- 169,177 ----
int spl0 __P((void)); /* drop ipl to zero */
#endif
int prtloc;
extern int ticks;
#define LOC() do { if (prtloc) printf("(%ld:%ld) %s: %d\n", curproc ? curproc->p_pid : -1, (long)ticks, __FILE__, __LINE__); } while (0)
#define PLOC(str) panic("XXX: (%ld:%ld) %s at %s: %d\n", curproc ? curproc->p_pid : -1, (long)ticks, str, __FILE__, __LINE__);
+ #endif /* !_KERNEL */