Print this page
de-linting of .s files

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/intel/kdi/kdi_idthdl.s
          +++ new/usr/src/uts/intel/kdi/kdi_idthdl.s
↓ open down ↓ 25 lines elided ↑ open up ↑
  26   26   */
  27   27  
  28   28  /*
  29   29   * Companion to kdi_asm.s - the implementation of the trap and interrupt
  30   30   * handlers.  For the most part, these handlers do the same thing - they
  31   31   * push a trap number onto the stack, followed by a jump to kdi_cmnint.
  32   32   * Each trap and interrupt has its own handler because each one pushes a
  33   33   * different number.
  34   34   */
  35   35  
  36      -#if defined(__lint)
  37      -#include <sys/types.h>
  38      -#else
  39      -
  40   36  #include <sys/asm_linkage.h>
  41   37  #include <sys/asm_misc.h>
  42   38  #include <sys/machprivregs.h>
  43   39  #include <sys/privregs.h>
  44   40  #include <sys/kdi_regs.h>
  45   41  #include <sys/trap.h>
  46   42  #include <sys/param.h>
  47   43  
  48   44  #include <kdi_assym.h>
  49   45  #include <assym.h>
↓ open down ↓ 268 lines elided ↑ open up ↑
 318  314          MKIVCT(252);    MKIVCT(253);    MKIVCT(254);    MKIVCT(255);
 319  315  
 320  316  #if !defined(__xpv)
 321  317  .section ".text"
 322  318  .align MMU_PAGESIZE
 323  319  .global kdi_isr_end
 324  320  kdi_isr_end:
 325  321          nop
 326  322  #endif
 327  323  
 328      -#endif /* !__lint */
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX