Subversion Repositories HelenOS-historic

Rev

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

Rev 125 Rev 167
Line 378... Line 378...
378
        if (m1 != m2) {
378
        if (m1 != m2) {
379
            /*
379
            /*
380
             * Both tasks and vm mappings are different.
380
             * Both tasks and vm mappings are different.
381
             * Replace the old one with the new one.
381
             * Replace the old one with the new one.
382
             */
382
             */
383
            if (m1) {
-
 
384
                vm_uninstall(m1);
-
 
385
            }
-
 
386
            vm_install(m2);
383
            vm_install(m2);
387
        }
384
        }
388
        TASK = THREAD->task;   
385
        TASK = THREAD->task;   
389
    }
386
    }
390
 
387