Subversion Repositories HelenOS-historic

Rev

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

Rev 1179 Rev 1227
Line 428... Line 428...
428
 * @param size New size of the virtual memory block starting at address.
428
 * @param size New size of the virtual memory block starting at address.
429
 * @param flags Flags influencing the remap operation. Currently unused.
429
 * @param flags Flags influencing the remap operation. Currently unused.
430
 *
430
 *
431
 * @return address on success, (__address) -1 otherwise.
431
 * @return address on success, (__address) -1 otherwise.
432
 */
432
 */
433
__address as_remap(as_t *as, __address address, size_t size, int flags)
433
__address as_area_resize(as_t *as, __address address, size_t size, int flags)
434
{
434
{
435
    as_area_t *area = NULL;
435
    as_area_t *area = NULL;
436
    ipl_t ipl;
436
    ipl_t ipl;
437
    size_t pages;
437
    size_t pages;
438
   
438