Subversion Repositories HelenOS

Rev

Rev 1888 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1888 Rev 1952
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup xen32mm
29
/** @addtogroup ia32xen_mm 
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 * @ingroup xen32mm
33
 * @ingroup ia32xen_mm
34
 */
34
 */
35
 
35
 
36
/*
36
/*
37
 * xen32 has no hardware support for address space identifiers.
37
 * ia32xen has no hardware support for address space identifiers.
38
 * This file is provided to do nop-implementation of mm/asid.h
38
 * This file is provided to do nop-implementation of mm/asid.h
39
 * interface.
39
 * interface.
40
 */
40
 */
41
 
41
 
42
#ifndef KERN_xen32_ASID_H_
42
#ifndef KERN_ia32xen_ASID_H_
43
#define KERN_xen32_ASID_H_
43
#define KERN_ia32xen_ASID_H_
44
 
44
 
45
typedef int asid_t;
45
typedef int asid_t;
46
 
46
 
47
#define ASID_MAX_ARCH       3
47
#define ASID_MAX_ARCH       3
48
 
48