Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2417 → Rev 2418

/branches/arm/kernel/arch/arm32/include/faddr.h
40,7 → 40,7
 
/** Calculate absolute address of function referenced by fptr pointer.
*
* @param f Function pointer.
* @param fptr Function pointer.
*/
#define FADDR(fptr) ((uintptr_t) (fptr))
 
/branches/arm/kernel/arch/arm32/src/mm/page_fault.c
132,7 → 132,7
* @param instr_addr Address of instruction which tries to access memory.
* @param badvaddr Virtual address the instruction tries to access.
*
* @return Type of access into memmory, #PF_ACCESS_EXEC if no memory access is requested.
* @return Type of access into memory, PF_ACCESS_EXEC if no memory access is requested.
*/
static pf_access_t get_memory_access_type(uint32_t instr_addr, uintptr_t badvaddr)
{
/branches/arm/kernel/arch/arm32/src/drivers/gxemul.c
241,7 → 241,7
 
/** Initializes console object representing gxemul console.
*
* @param Console device number.
* @param devno device number.
*/
void gxemul_console_init(devno_t devno)
{