Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
9answers
7k views

Oracle PL/SQL - tips for immediate output / console printing

I have a number of pl/sql procedures that can take several minutes to run. While developing them, I've added a few print statements to help debug and also provide some feedback and progress ...
6
votes
3answers
2k views

bash: force exec'd process to have unbuffered stdout

I've got a script like: #!/bin/bash exec /usr/bin/some_binary > /tmp/my.log 2>&1 Problem is that some_binary sends all of its logging to stdout, and buffering makes it so that I only see ...
5
votes
6answers
651 views

Segmentation fault question

I have observed that sometimes in C programs, if we have a printf in code anywhere before a segmentation fault, it does not print. Why is this so?
3
votes
1answer
424 views

Android: BufferedOutputStream necessary when saving file to internal data?

I wanted to save a string to a file and read it back, so I followed those two examples: developer.android.com example anddev.org example However, in both of them, no BufferedOutputStream wrapper ...
2
votes
1answer
93 views

How to save the tty without a buffer?

I'm having trouble with buffers : I have a daemon D, and its monitor M. D is started before M, and M prints any relevant information to the tty, and I need to parse this information and give it to a ...