#include "intproc$timeout.h"

unsigned    int	exception( proc_buff )
    struct  process *proc_buff;
    {
    if ( !strncmp( proc_buff->term,
			  "OPA0:", strlen( "OPA0:" ) ) ) return( 1 );
    if ( !strncmp( proc_buff->usernam,
			  "SYSTEM", strlen( "SYSTEM" ) ) ) return( 1 );
    if ( !strncmp( proc_buff->usernam,
			  "RSI", strlen( "RSI" ) ) ) return( 1 );
    if ( !strncmp( proc_buff->usernam,
			  "DUANE", strlen( "DUANE" ) ) ) return( 1 );
    return( 0 );
    }
