Subversion Repositories HelenOS-historic

Rev

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

Rev 1609 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 ppc32mm   
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
#include <arch/mm/page.h>
35
#include <arch/mm/page.h>
30
#include <genarch/mm/page_pt.h>
36
#include <genarch/mm/page_pt.h>
31
#include <arch/mm/frame.h>
37
#include <arch/mm/frame.h>
32
#include <arch/asm.h>
38
#include <arch/asm.h>
33
#include <arch/interrupt.h>
39
#include <arch/interrupt.h>
Line 295... Line 301...
295
   
301
   
296
    last_frame = ALIGN_UP(last_frame + size, FRAME_SIZE);
302
    last_frame = ALIGN_UP(last_frame + size, FRAME_SIZE);
297
   
303
   
298
    return virtaddr;
304
    return virtaddr;
299
}
305
}
-
 
306
 
-
 
307
 /** @}
-
 
308
 */
-
 
309