In C++03 Standard observable behavior (1.9/6) includes calls to library I/O functions. Now I have this code:

printf( "" );

which is formally a call to a library I/O function but has no effect.

Is it observable behavior? Is the compiler allowed to eliminate it?

link|improve this question

76% accept rate
6  
Does it matter? – Oli Charlesworth Aug 26 '11 at 14:37
Can you tell the difference? – Bo Persson Aug 26 '11 at 14:40
@Oli Charlesworth: Just as much as code optimization does. – sharptooth Aug 26 '11 at 14:40
@Bo Persson: Yes, if the compiler is not allowed to do that I get extra machine code. – sharptooth Aug 26 '11 at 14:42
@Oli - even if it doesn't matter that doesn't make it not an interesting question. – awoodland Aug 26 '11 at 14:51
show 2 more comments
feedback

5 Answers

up vote 5 down vote accepted

It's certainly observable if sync_with_stdio is true. When that's true, printf("") forces synchronization with std::cout output, flushing previously buffered output.

link|improve this answer
feedback

I highly doubt it, since the behavior might become more highly visible in multithreaded programming if the OS chooses to context switch when the thread invoking printf blocks for I/O.

In that case, it will definitely have an effect if the results depend on how the threads is interleaved.

link|improve this answer
In C++03 there's no such thing as a thread – awoodland Aug 26 '11 at 14:48
That's true, but the question was whether or not printing "had no effect" and was therefore not "observable". I was merely providing one case where it would have a real effect. Nowhere did I claim that this was from the standard. – Platinum Azure Aug 26 '11 at 15:05
1  
@Platinum: I do not thing that context switching counts. All code modifications may affect context switching, yet optimizations are allowed. – Matthieu M. Aug 26 '11 at 15:35
feedback

In theory, you C library can be written in a way that flushes the buffer based on time. In that case, printing of empty string can result in a flush, thus producing a visible effect.

link|improve this answer
feedback

It would observable

  • if the output is redirected and the file was closed, truncated, or somehow has become invalid for output
  • if the stream state was 'bad' anyway

The point made about sync_with_... is also very relevant

link|improve this answer
feedback

Of course this has observable behavior - it must generate a call to write() system call with the underlying file descriptor. Making a system call is very observable behavior.

Consider as an extreme example that the file descriptor in the kernel may be serviced by a device driver that sounds siren every time it's write file operation is called (OK, somewhat of an artificial example, I'll admit :-) ...

link|improve this answer
3  
I would have thought that the library (which buffers) would do a no-nop as zero bytes will be added to the buffer. The only observable evidence is nmore CPU usage. – Ed Heal Aug 26 '11 at 14:49
1  
@Ed Heal - and if CPU usage is considered an observable behaviour then all optimisations are out! – awoodland Aug 26 '11 at 14:50
1  
What if my computer sounds a siren every time ram is modified? Does incrementing an integer then qualify as observable behavior? – Benjamin Lindley Aug 26 '11 at 14:55
3  
@Benjamin Lindley: LOL. I guess you wouldn't care - your life would be miserable anyway. – sharptooth Aug 26 '11 at 15:00
1  
-1, wrong. There's no reason to assume a write call even exists. If the OS only has a PUTCHAR(C) call, the printf implementation will have to loop. And obviously looping over "" will call PUTCHAR exactly zero times, i.e. non-observable. – MSalters Aug 26 '11 at 15:12
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.