Subversion Repositories HelenOS

Rev

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

Rev 1787 Rev 1888
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 ia32mm
29
/** @addtogroup ia32mm 
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 * @ingroup ia32mm, amd64mm
33
 * @ingroup ia32mm, amd64mm
34
 */
34
 */
Line 37... Line 37...
37
 * ia32 has no hardware support for address space identifiers.
37
 * ia32 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 __ia32_ASID_H__
42
#ifndef KERN_ia32_ASID_H_
43
#define __ia32_ASID_H__
43
#define KERN_ia32_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
 
49
#define asid_get()      (ASID_START+1)
49
#define asid_get()      (ASID_START+1)
50
#define asid_put(asid)
50
#define asid_put(asid)
51
 
51
 
52
#endif
52
#endif
53
 
53
 
54
 /** @}
54
/** @}
55
 */
55
 */
56
 
-