Subversion Repositories HelenOS-historic

Rev

Rev 1468 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1468 Rev 1702
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
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 * @ingroup ia32mm, amd64mm
-
 
34
 */
-
 
35
 
29
/*
36
/*
30
 * ia32 has no hardware support for address space identifiers.
37
 * ia32 has no hardware support for address space identifiers.
31
 * 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
32
 * interface.
39
 * interface.
33
 */
40
 */
Line 41... Line 48...
41
 
48
 
42
#define asid_get()      (ASID_START+1)
49
#define asid_get()      (ASID_START+1)
43
#define asid_put(asid)
50
#define asid_put(asid)
44
 
51
 
45
#endif
52
#endif
-
 
53
 
-
 
54
 /** @}
-
 
55
 */
-
 
56