giointerrupt.c 1.06 KB
/**************************************************************************
 *									  *
 *		 Copyright (C) 1994, Silicon Graphics, Inc.		  *
 *									  *
 *  These coded instructions, statements, and computer programs  contain  *
 *  unpublished  proprietary  information of Silicon Graphics, Inc., and  *
 *  are protected by Federal copyright law.  They  may  not be disclosed  *
 *  to  third  parties  or copied or duplicated in any form, in whole or  *
 *  in part, without the prior written consent of Silicon Graphics, Inc.  *
 *									  *
 **************************************************************************/

#include "osint.h"
#include "piint.h"
#include "rcp.h"

/*
 * Name: __osGIOInterrupt
 * 
 * Description:
 *	Interrupt the Indy host with specified value. Calls the
 *	raw routine with mutual exclusion protection.
 *
 * Note:
 *	Only the low 6 bits are valid
 */
void
__osGIOInterrupt(s32 value)
{
    /* Block to get resource token */
    __osPiGetAccess();

    __osGIORawInterrupt(value);

    /* Return resource token */
    __osPiRelAccess();
}