mirror of
				https://git.proxmox.com/git/mirror_edk2
				synced 2025-10-31 11:23:00 +00:00 
			
		
		
		
	 2aa62f2bc9
			
		
	
	
		2aa62f2bc9
		
	
	
	
	
		
			
			This set of three packages: AppPkg, StdLib, StdLibPrivateInternalFiles; contains the implementation of libraries based upon non-UEFI standards such as ISO/IEC-9899, the library portion of the C Language Standard, POSIX, etc. AppPkg contains applications that make use of the standard libraries defined in the StdLib Package. StdLib contains header (include) files and the implementations of the standard libraries. StdLibPrivateInternalFiles contains files for the exclusive use of the library implementations in StdLib. These files should never be directly referenced from applications or other code. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11600 6f19259b-4bc3-4df7-8a09-765794883524
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* $NetBSD: intrcnt.h,v 1.1 2006/04/07 14:21:18 cherry Exp $ */
 | |
| 
 | |
| /*-
 | |
|  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
 | |
|  * All rights reserved.
 | |
|  *
 | |
|  * Author: Chris G. Demetriou
 | |
|  *
 | |
|  * 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 the
 | |
|  * rights to redistribute these changes.
 | |
|  */
 | |
| 
 | |
| #define	INTRCNT_CLOCK		0
 | |
| #define	INTRCNT_ISA_IRQ		(INTRCNT_CLOCK + 1)
 | |
| #define	INTRCNT_ISA_IRQ_LEN	16
 | |
| #define	INTRCNT_OTHER_BASE	(INTRCNT_ISA_IRQ + INTRCNT_ISA_IRQ_LEN)
 | |
| #define	INTRCNT_OTHER_LEN	240
 | |
| #define	INTRCNT_COUNT		(INTRCNT_OTHER_BASE + INTRCNT_OTHER_LEN)
 | |
| 
 | |
| /*
 | |
|  * Maximum name length in intrnames table (including terminating '\0'.
 | |
|  * Since vmstat(8) assumes a maximum length of 13 (including '\0'), we're
 | |
|  * pretty much limited to that (unless we don't care about the alignment
 | |
|  * of the columns :-)
 | |
|  */
 | |
| #define INTRNAME_LEN		13
 |