Date: 10/07/05 (Computer Geeks) Keywords: no keywords What happens when you code late in the night. This becomes funny: //pwned method name !1!!one!!11.
private void ifPageFaultAccessDiskToGetDataInformationAndPutDataInformationInPage( int status, long virtualAddress){
if (status == AbstractVMManager.PAGE_FAULT){
long diskTrack = memoryManager.translatePageAddressToDiskTrack(virtualAddress);
performDiskIO(diskTrack);
diskScheduler.addRequest(new DiskRequest(memoryManager, diskTrack));
}
}
Source: http://www.livejournal.com/community/computergeeks/791264.html
|