Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1707 → Rev 1708

/kernel/trunk/arch/ia64/include/faddr.h
42,7 → 42,7
* Calculate absolute address of function
* referenced by fptr pointer.
*
* @param fptr Function pointer.
* @param f Function pointer.
*
*/
#define FADDR(f) (*((__address *)(f)));
/kernel/trunk/arch/ia64/include/asm.h
82,7 → 82,7
 
/** Write IVA (Interruption Vector Address) register.
*
* @param New location of interruption vector table.
* @param v New location of interruption vector table.
*/
static inline void iva_write(__u64 v)
{
105,7 → 105,7
 
/** Write ITC (Interval Timer Counter) register.
*
* @param New counter value.
* @param v New counter value.
*/
static inline void itc_write(__u64 v)
{
127,7 → 127,7
 
/** Write ITM (Interval Timer Match) register.
*
* @param New match value.
* @param v New match value.
*/
static inline void itm_write(__u64 v)
{
162,7 → 162,7
 
/** Write ITV (Interval Timer Vector) register.
*
* @param New vector and mask bit.
* @param v New vector and mask bit.
*/
static inline void itv_write(__u64 v)
{
171,7 → 171,7
 
/** Write EOI (End Of Interrupt) register.
*
* @param This value is ignored.
* @param v This value is ignored.
*/
static inline void eoi_write(__u64 v)
{
193,7 → 193,7
 
/** Write TPR (Task Priority Register).
*
* @param New value of TPR.
* @param v New value of TPR.
*/
static inline void tpr_write(__u64 v)
{
/kernel/trunk/arch/ia64/src/mm/tlb.c
297,7 → 297,7
* @param va Virtual page address.
* @param asid Address space identifier.
* @param entry The rest of TLB entry as required by TLB insertion format.
* @param dtc If true, insert into data translation register, use instruction translation register otherwise.
* @param dtr If true, insert into data translation register, use instruction translation register otherwise.
* @param tr Translation register.
*/
void tr_mapping_insert(__address va, asid_t asid, tlb_entry_t entry, bool dtr, index_t tr)
/kernel/trunk/arch/ia64/src/mm/page.c
210,7 → 210,7
 
/** Set up one VHPT entry.
*
* @param t VHPT entry to be set up.
* @param v VHPT entry to be set up.
* @param page Virtual address of the page mapped by the entry.
* @param asid Address space identifier of the address space to which page belongs.
* @param frame Physical address of the frame to wich page is mapped.