Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 616 → Rev 617

/kernel/trunk/arch/sparc64/include/mm/asid.h
29,8 → 29,13
#ifndef __sparc64_ASID_H__
#define __sparc64_ASID_H__
 
typedef int asid_t;
#include <arch/types.h>
 
/*
* On SPARC, Context means the same thing as ASID trough out the kernel.
*/
typedef __u16 asid_t;
 
#define asid_get() 0
 
#endif