diff options
Diffstat (limited to 'kern/xpr.h')
-rw-r--r-- | kern/xpr.h | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -1,34 +1,34 @@ -/* +/* * Mach Operating System * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University * All Rights Reserved. - * + * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. - * + * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. - * + * * Carnegie Mellon requests users of this software to return to - * + * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 - * + * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* - * Include file for xpr circular buffer silent tracing. + * Include file for xpr circular buffer silent tracing. * */ /* - * If the kernel flag XPRDEBUG is set, the XPR macro is enabled. The + * If the kernel flag XPRDEBUG is set, the XPR macro is enabled. The * macro should be invoked something like the following: * XPR(XPR_SYSCALLS, ("syscall: %d, 0x%x\n", syscallno, arg1); * which will expand into the following code: @@ -41,7 +41,7 @@ * of the kernel can easily be reconstructed in a post-processor which * performs the printf processing. * - * If the XPRDEBUG compilation switch is not set, the XPR macro expands + * If the XPRDEBUG compilation switch is not set, the XPR macro expands * to nothing. */ @@ -50,9 +50,9 @@ #ifdef KERNEL #include <xpr_debug.h> -#else KERNEL +#else /* KERNEL */ #include <sys/features.h> -#endif KERNEL +#endif /* KERNEL */ #include <machine/xpr.h> @@ -80,9 +80,9 @@ extern int xprflags; #define XPR_INODE_PAGER (1 << 14) #define XPR_INODE_PAGER_DATA (1 << 15) -#else XPR_DEBUG +#else /* XPR_DEBUG */ #define XPR(flags,xprargs) -#endif XPR_DEBUG +#endif /* XPR_DEBUG */ struct xprbuf { char *msg; @@ -98,4 +98,4 @@ extern void xpr_dump(); extern void xprinit(); extern void xprbootstrap(); -#endif _KERN_XPR_H_ +#endif /* _KERN_XPR_H_ */ |