Re: Windows buffer question Apr. 30, 2009
Tech-Archive recommends: Fix windows errors by optimizing your registry
In a nutshell, no. Windows doesn't allow direct access to hardware.
E.D.G. wrote:
Posted by E.D.G. April 30, 2009
Is there a way to start a Basic program for example with Windows so that
when the program is instructed to print something to a file or to a
pipe, the information does not get stored in a temporary Windows buffer?
For example,
Print #1, "data"
A Basic pipe (#1) is actually being opened to another program. And that
program needs to be sent the information in the Print statement right
away rather than when the pipe is closed. The Basic language being used
might not have the right type of "flush" statement that could be added
to the "Open Pipe" statement to have it transmit data without its being
buffered.
.
Relevant Pages
- Windows buffer question Apr. 30, 2009
... Is there a way to start a Basic program for example with Windows so that when the program is instructed to print something to a file or to a pipe, the information does not get stored in a temporary Windows buffer? ... The Basic language being used might not have the right type of "flush" statement that could be added to the "Open Pipe" statement to have it transmit data without its being buffered. ... (microsoft.public.windowsxp.general) - [Full-disclosure] RE: Windows PHP 4.x "0-day" buffer overflow
... I believe using named pipes on windows has ALWAYS been known for MANY YEARS ... What this has to do with PHP I'm not certain either as this seems to ... > Where "pipe" is the named pipe to use. ... (Full-Disclosure) - question about memory visibility on Windows
... The request is done by writing a byte to a ... When the engine thread has ... byte on the write end of a pipe. ... The above is built on Linux and on Windows ... (comp.programming.threads) - Re: Signaling Ruby from C/C++
... // C code called from a Ruby instance method. ... Obviously make sure Pipe isn't allocated on the ... be very wary that _pipe produces a half-duplex pipe in Windows! ... Unlike some Unix flavors, you may not write Pipeand you may not read ... (comp.lang.ruby) - Re: platform independent file processing
... windows' gawk that i can call from within gawk and pipe to getline ... also, to be truly platform independent, more than just the command will need to be addressed: ex: the pipe works differently on windows than on linux so instead of each line presented on the pipe as it is created, the entire command is written to a temp file and then presented a line at a time from this file. ... (comp.lang.awk) |
|