Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2412 → Rev 2414

/branches/arm/kernel/arch/arm32/include/mm/asid.h
31,6 → 31,8
*/
/** @file
* @brief ASIDs related declarations.
*
* ARM CPUs doesn't support ASIDs.
*/
 
#ifndef KERN_arm32_ASID_H_
43,10 → 45,11
typedef uint8_t asid_t;
 
 
/* this works due to fact that this file is never included alone but only
through "generic/include/mm/asid.h" where ASID_START is defined
*/
#define asid_get() ( ASID_START + 1 )
/* this works due to fact that this file is never included alone but only
throught "generic/include/mm/asid.h" where ASID_START is defined
*/
 
#define asid_put(asid)
 
#endif
/branches/arm/kernel/arch/arm32/include/mm/page_fault.h
32,8 → 32,9
/** @file
* @brief Page fault related declarations.
*/
 
#ifndef KERN_arm32_PAGE_FAULT_H_
#define KERN_arm32_PAGE_FAULT_H
#define KERN_arm32_PAGE_FAULT_H_
 
#include <arch/types.h>