Subversion Repositories HelenOS-historic

Rev

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

Rev 1423 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 genarchmm
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
/*
35
/*
30
 * This is the generic 4-level page table interface.
36
 * This is the generic 4-level page table interface.
31
 * Architectures that use hierarchical page tables
37
 * Architectures that use hierarchical page tables
32
 * are supposed to implement *_ARCH macros.
38
 * are supposed to implement *_ARCH macros.
33
 */
39
 */
Line 107... Line 113...
107
extern pte_t *page_mapping_find_pt(as_t *as, __address page);
113
extern pte_t *page_mapping_find_pt(as_t *as, __address page);
108
 
114
 
109
#endif
115
#endif
110
 
116
 
111
#endif
117
#endif
-
 
118
 
-
 
119
 /** @}
-
 
120
 */
-
 
121