in reply to Max 16384 bytes
in different code
Different from what? Whence comes this code, and what purpose does it fullfil?
From stat:
11 blksize preferred block size for file system I/OThe value 16384 comes from left-shift, it's 1<<14 Bytes or 2**14 Bytes or 16 kB. The expression you posted means:
If this filehandle's file system (if any) has no preference about I/O blocksize, I'll just use 16 kB.
Could be for socket I/O - hard to tell without context.
Note, your system is binary (hence 2) and 7 is a magic number (hence 14) :-)
--shmem
_($_=" "x(1<<5)."?\n".q·/)Oo. G°\ /
/\_¯/(q /
---------------------------- \__(m.====·.(_("always off the crowd"))."·
");sub _{s./.($e="'Itrs `mnsgdq Gdbj O`qkdq")=~y/"-y/#-z/;$e.e && print}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Max 16384 bytes
by bloonix (Monk) on Jul 02, 2007 at 15:02 UTC | |
|
Re^2: Max 16384 bytes
by Anomynous Monk (Scribe) on Jul 03, 2007 at 07:45 UTC |