j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
Author: wmb Date: 2007-09-18 01:30:12 +0200 (Tue, 18 Sep 2007) New Revision: 610
Modified: dev/usb2/device/storage/scsidisk.fth Log: USB mass storage driver - removed spinner from the read routine.
Modified: dev/usb2/device/storage/scsidisk.fth =================================================================== --- dev/usb2/device/storage/scsidisk.fth 2007-09-17 23:29:26 UTC (rev 609) +++ dev/usb2/device/storage/scsidisk.fth 2007-09-17 23:30:12 UTC (rev 610) @@ -149,10 +149,7 @@ \ These three methods are called by the deblocker.
: max-transfer ( -- n ) parent-max-transfer ; -: read-blocks ( addr block# #blocks -- #read ) - " show-progress" evaluate - true d# 8 r/w-blocks -; +: read-blocks ( addr block# #blocks -- #read ) true d# 8 r/w-blocks ; : write-blocks ( addr block# #blocks -- #written ) false d# 10 r/w-blocks ;
\ Methods used by external clients