search for: read_device

Displaying 2 results from an estimated 2 matches for "read_device".

Did you mean: pread_device
2010 Mar 02
9
"Dos installer" from Win98se
...k space 409,600 bytes used by system 506,290,176 bytes available on disk 8,192 bytes in each allocation unit. 61,803 allocation units available on disk. Volume Serial Number is 1640-0F01 C:\WINDOWS> C:\WINDOWS>cd c:\ C:\>syslinux -sma -d syslinux o: ... ... read_device(15,00002fa4,1,0) Trying unlock 0001... ok 0001 set_attributes("O:\ldlinux.sys", 0x00) creat("O:\ldlinux.sys", 0x0) close(5) set_attributes("O:\ldlinux.sys", 0x07) Trying lock 020f... ok 440d read_device(15,00003518,1,0) read_device(15,00003738,1,485) read_device(15,000...
2002 Aug 05
5
[patch] read-devices
...- next part -------------- diff -r -u4 rsync-2.5.5/checksum.c rsync-patched/checksum.c --- rsync-2.5.5/checksum.c Tue Oct 26 01:04:09 1999 +++ rsync-patched/checksum.c Mon Aug 5 10:05:15 2002 @@ -24,8 +24,9 @@ #define CSUM_CHUNK 64 int checksum_seed = 0; extern int remote_version; +extern int read_devices; /* a simple 32 bit checksum that can be upadted from either end (inspired by Mark Adler's Adler-32 checksum) @@ -73,43 +74,40 @@ for(i = 0; i + CSUM_CHUNK <= len; i += CSUM_CHUNK) { mdfour_update(&m, (uchar *)(buf1+i), CSUM_CHUNK); } - if (len - i > 0) { + if (len...