Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

56 lines
983 B

// TITLE("Interprocessor Interrupts")
//++
//
// Copyright (c) 1993-1994 Microsoft Corporation
//
// Module Name:
//
// xxipiint.s
//
// Abstract:
//
// This module implements the code necessary to field and process the
// interprocessor interrupts on a MIPS R4000 Duo system.
//
// Environment:
//
// Kernel mode only.
//
// Revision History:
//
//--
#include "halmips.h"
SBTTL("Interprocessor Interrupt")
//++
//
// Routine Description:
//
// This routine is entered as the result of an interprocessor interrupt.
// Its function is to acknowledge the interrupt and transfer control to
// the standard system routine to process interprocessor requrests.
//
// Arguments:
//
// s8 - Supplies a pointer to a trap frame.
//
// Return Value:
//
// None.
//
//--
LEAF_ENTRY(HalpIpiInterrupt)
//
// Inter processor interrupt processing
//
move a0,s8
j HalpProcessIpi // acknowledgement Ipi
.end HalpIpiInterrupt