Subversion Repositories HelenOS-historic

Rev

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

Rev 1595 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 amd64mm amd64 
-
 
30
  * @ingroup mm
-
 
31
 * @{
-
 
32
 */
-
 
33
/** @file
-
 
34
 * @ingroup amd64
-
 
35
 */
-
 
36
 
29
#include <arch/mm/page.h>
37
#include <arch/mm/page.h>
30
#include <genarch/mm/page_pt.h>
38
#include <genarch/mm/page_pt.h>
31
#include <arch/mm/frame.h>
39
#include <arch/mm/frame.h>
32
#include <mm/page.h>
40
#include <mm/page.h>
33
#include <mm/frame.h>
41
#include <mm/frame.h>
Line 204... Line 212...
204
   
212
   
205
    last_frame = ALIGN_UP(last_frame + size, FRAME_SIZE);
213
    last_frame = ALIGN_UP(last_frame + size, FRAME_SIZE);
206
   
214
   
207
    return virtaddr;
215
    return virtaddr;
208
}
216
}
-
 
217
 
-
 
218
 /** @}
-
 
219
 */
-
 
220