4.3BSD-Reno/src/sys/tahoealign/Aput_word.c

Compare this file to the similar file:
Show the results in this format:

/*	Aput_word.c	1.1	86/07/20	*/


#include	"../tahoealign/align.h"

put_word (infop, word, where)
register	process_info	*infop;
register	char		*where;
register	long		word;
/*
/*	Put the word at the given address in memory.
/*	Caveat: It's quite difficult to find a pte reference
/*		fault.  So I took the easy way out and just signal
/*		an illegal access.
/*	
/**************************************************/
{
	register long code;

	code = writeable(infop, where, 2);
	if ( code == TRUE ) {
		*where = word>>8;
		*(where+1) = word;
	} else exception (infop, ILL_ACCESS, where, code);
}