“Ostream” object is not printing message on HP-UNIX for debug mode


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users “Ostream” object is not printing message on HP-UNIX for debug mode
# 1  
Old 09-13-2004
“Ostream” object is not printing message on HP-UNIX for debug mode

The following C++ code segment is not working in debug mode build on HP-UNIX machine. It is not printing "Hello World" message on the screen. While it is working fine in release mode build.

==============================================

class KLogStreamBuf : public streambuf {
public:
...........
...........
void LogOn( ostream& l, const int ts = 1 ) {
FStreamBufsList.append( new KLogStreamBufs(l.rdbuf(), ts)); }
...........
...........
}


int main(int argc, char *argv[])
{
...........
...........

KLogStreamBuf DELogBuf1;

ostream DELog1( &DELogBuf1);

DELogBuf1.LogOn( cout);

DELog1<<"Hello World";

...........
...........
}

==============================================


For debug mode build I am using following compilation options

"/opt/aCC/bin/aCC -c -g +DA2.0N -w -AA -mt -N "


I would appreciate any help regarding it.

Regards,
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Logging perl and shell debug mode.

I have a shell program which calls a perl program. I am running the shell program with command; $ ksh -x <prog_name> Inside the shell program, I am calling perl with warnings. I want to capture the entire output as it comes on screen. The command I tried is: $ ksh -x... (1 Reply)
Discussion started by: som.nitk
1 Replies

2. Programming

Is there any possibility of running the PHP script in a debug mode ?

Is there any possibility of running the PHP script in a debug mode ? If so, do i have to download any package? Any free downloads available? Can anyone please guide me through? Am a newbie in PHP scripting. Thanks in Advance! (1 Reply)
Discussion started by: vidhyaS
1 Replies

3. Programming

Compile a proc/c++ file in debug mode.

Hi, I'm using the following commands to execute a proc file, but I'm unable to debug the program. What modifications do I need to make in the command options to debug the program created. I have a proc1.pc file, using the following three steps to generate the proc1 exe. After the proc1 exe... (2 Replies)
Discussion started by: ehari
2 Replies

4. Red Hat

ehternet in debug mode

I have a little dell running redhat server. it's getting ethernet traffic to console and /var/log/messages (up 60Mb) i can't seem to find where to turn it off! any help would be greatly appreciated. here's syslog: here's a snip from the log: Sep 28 21:34:08 zgarch_serv kernel: IN=eth0... (2 Replies)
Discussion started by: toferloafer
2 Replies

5. AIX

Running Installp in debug mode

Is there a way I can execute an installp command in debug mode, so that I can see whats happening when a fileset is being installed or updated? (What files are being replace etc etc). I have an installp command failing for unknown reason. (7 Replies)
Discussion started by: balaji_prk
7 Replies

6. Shell Programming and Scripting

Debug mode

When I run a lengthy script in debug mode i need to capture all the steps which are executed. e.g ksh -x script.ksh + test -f /proc/mounts + /bin/ls -l /proc/21326/exe + is=ksh + test ksh = ksh + test -s /etc/ksh.kshrc + . /etc/ksh.kshrc + trap 1 2 3 + who am i + awk {print $1} +... (2 Replies)
Discussion started by: zooby
2 Replies

7. Programming

Sun Studio C++ - Getting error in linking std::ostream &std::ostream::operator<<(std:

Hello all Im using CC: Sun C++ 5.6 2004/07/15 and using the -library=stlport4 when linkning im getting The fallowing error : Undefined first referenced symbol in file std::ostream &std::ostream::operator<<(std::ios_base&(*)(std::ios_base&))... (0 Replies)
Discussion started by: umen
0 Replies

8. Shell Programming and Scripting

run in debug mode

Hi, I have a question on my korn shell script. When I run without debugging turned on, I can't get the correct result. If I turn on the debug mode, like sh -x myprogram, it will give me the correct result. Can someone tell me what is going on here? Thanks, :rolleyes: (6 Replies)
Discussion started by: whatisthis
6 Replies
Login or Register to Ask a Question
gdcmviewer(1)							       GDCM							     gdcmviewer(1)

NAME
gdcmviewer - Simple DICOM viewer. SYNOPSIS
gdcmviewer [options] file-in DESCRIPTION
The gdcmviewer is a simple tool that show how to use vtkGDCMImageReader. The class that use gdcm to make a layer to VTK. gdcmviewer is basically only just a wrapper around VTK/GDCM. This tool is meant for testing integration of GDCM in VTK. You should see it as a demo tool. It does compile with VTK ranging from 4.2 to 5.8, but only with VTK 5.2 (or above) can only play with the widgets (as described below). PARAMETERS
file-in DICOM input filename options options --force-rescale force rescale (advanced users) --force-spacing force spacing (advanced users) -r --recursive Recusively descend directory general options -h --help print this help text and exit -v --version print version information and exit -V --verbose verbose mode (warning+error). -W --warning warning mode, print warning information -E --error error mode, print error information -D --debug debug mode, print debug information Typical usage Simple usage For now gdcmviewer should be started from a command line prompt. The next argument should be the name of the DICOM file you wish to read. For instance: $ gdcmviewer -V 012345.002.050.dcm gdcmviewer will try to read your file, and then print the vtk information associated with this file. Basically what kind of image you are looking at. o ScalarType is the DICOM Real World Value type o Dimensions is the dimension of the image o Spacing is the spacing of the image o NumberOfScalarComponents should be 1 for grayscale & PALETTE COLOR and 3 for RGB, YBR data. Wiki Link The wiki page, with color pictures can be found at: http://sourceforge.net/apps/mediawiki/gdcm/index.php?title=Gdcmviewer SEE ALSO
gdcmdump(1), gdcm2vtk(1) COPYRIGHT
Copyright (c) 2006-2011 Mathieu Malaterre Version 2.2.0 Tue Feb 5 2013 gdcmviewer(1)