diff options
author | Guoli Shu <Kerry.Shu@Sun.COM> | 2010-02-09 15:21:27 -0800 |
---|---|---|
committer | Guoli Shu <Kerry.Shu@Sun.COM> | 2010-02-09 15:21:27 -0800 |
commit | 26896e4c150206551989fd1aa9452a11c5ced6fc (patch) | |
tree | 7b6231db587c1c3cd3bf1a4f7a8baf545c06aa93 /usr/src/uts/intel/ia32/sys | |
parent | 1c4c388cca4fbb98853714d86358e5ca9d8da6eb (diff) | |
download | illumos-joyent-26896e4c150206551989fd1aa9452a11c5ced6fc.tar.gz |
6914747 IPL 6 is supposed to have 32 interrupt vectors, but we can get only 31
Diffstat (limited to 'usr/src/uts/intel/ia32/sys')
-rw-r--r-- | usr/src/uts/intel/ia32/sys/trap.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr/src/uts/intel/ia32/sys/trap.h b/usr/src/uts/intel/ia32/sys/trap.h index fcd8739775..3d4536c4f8 100644 --- a/usr/src/uts/intel/ia32/sys/trap.h +++ b/usr/src/uts/intel/ia32/sys/trap.h @@ -23,15 +23,13 @@ /* All Rights Reserved */ /* - * Copyright 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright 2010 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #ifndef _IA32_SYS_TRAP_H #define _IA32_SYS_TRAP_H -#pragma ident "%Z%%M% %I% %E% SMI" - #ifdef __cplusplus extern "C" { #endif @@ -64,7 +62,7 @@ extern "C" { #define T_ENOEXTFLT 0x20 /* emulated ext not present */ #define T_FASTTRAP 0xd2 /* fast system call */ #define T_SYSCALLINT 0x91 /* general system call */ -#define T_DTRACE_RET 0x7f /* DTrace pid return */ +#define T_DTRACE_RET 0x92 /* DTrace pid return */ #define T_INT80 0x80 /* int80 handler for linux emulation */ #define T_SOFTINT 0x50fd /* pseudo softint trap type */ |