Terminal manipulation capabilities452 (11/6/2006 4:28:33 PM) comp.unix.programmer I am writing a terminal based application which is meant to run on several UNICes - Linux, Solaris and AIX 5.x. Other than the standard console io provided by C/C++ libraries I need a few other functionality - ... garth_rockett
type traits and element specific functions: design problem872 (10/16/2006 4:26:10 PM) comp.lang.c++.moderated I am writing a framework for writing an installer. The system should port across Solaris (SPARC/x86), Linux (x86) and AIX (RS6k). I am faced with a basic problem. Currently we only plan to support a UNIX term... Andy
Diskless: Howto create a root-disk image117 (9/25/2006 1:06:44 PM) comp.os.linux.networking I have a simple 2-PC LAN at home. I want to make one of them boot from the other over the network. I am trying this out because I plan to write some basic provisioning and maintenance routines for hardware whic... Andy
editing delimited record files954 (10/5/2005 7:52:59 AM) comp.lang.perl.misc I am a Perl newbie ... absolute newbie. I need to parse a validate the data in a text file containing delimited records. I might need to sanitize some of the data and edit and save the file as I read through it... garth_rockett
Mapping error codes to error messages #25144 (9/28/2005 5:42:06 PM) comp.lang.c++.moderated I need to make an error handling framework in which application error codes can be mapped to pre-defined error messages. The framework would have C++ exception classes for error information propagation. I howev... Andy
Mapping error codes to error messages2164 (9/28/2005 4:40:29 PM) comp.unix.programmer I need to make an error handling framework to be used by C++ applications running on HP-UX. In this, the application error codes can be mapped to pre-defined error messages. The framework would have C++ excepti... garth_rockett
Signal handler in C++1185 (9/14/2005 9:48:25 AM) comp.lang.c++.moderated I am writing an error handler framework in C++ on HP-UX 11i (and porting possibilities are ample) for an analytics product and as part of it we need to generate stack-traces on the fly in response to any signal... Andy
Stack-trace generator using C++5184 (9/14/2005 9:08:10 AM) comp.unix.programmer I am writing an error handler framework in C++ on HP-UX 11i (and porting possibilities are ample) for an analytics product and as part of it we need to generate stack-traces on the fly in response to any signal... garth_rockett
Byte padding while fwrite / write2241 (9/12/2005 11:13:37 AM) comp.unix.programmer I have a large file containing packed 12 byte long records. I have to process this file and selectively write records based on some criteria to another file. I am using mmap to map the file to memory and readin... garth_rockett
ostringstream, ends: what am I missing427 (12/21/2003 12:05:01 PM) comp.lang.c++ I was told that an ostringstream should be terminated by ends. However, the following code snippet does not do what I would expect if that were the case: #include #include using namespace std; int main()... invalid71(119)
inline functions #42119 (9/16/2004 10:08:22 AM) comp.lang.c++ I haven't found any previous message related to what I'm going to ask here, but accept my anticipated excuses if I'm wrong. I want to ask about the real usefulness of the 'inline' keyword. I've read many autho... Ruben.Campos(24)
Setting up a J2EE AS on Linux1224 (10/16/2004 12:30:57 PM) comp.lang.java.programmer Hi, I have no prior knowledge of J2EE / EJB and the likes and want to set up a J2EE application server on my PC running Fedora Linux 2. Can anyone please suggest what would be a good and easily available app s... garth_rockett(50)
Java newbie: RMI woes on Linux425 (11/10/2004 3:00:42 AM) comp.lang.java.programmer I am a java newbie and was trying my hand at RMI. I have an interface, a server implementing that interface and a utility class with "public static void main" to register the server class. I also have a client,... garth_rockett(50)
C++ books #3922 (8/9/2005 8:24:49 AM) comp.lang.c++ I am C++ programmer and enthusiast. Also, something of a book collector. Currently I am starting on the first project in my life where I need to be actively involved in the design of a data warehousing query en... garth_rockett(50)
compile errors with list of auto_ptr526 (8/10/2005 8:09:14 PM) comp.lang.c++ I am getting the following compilation errors with the following program. My compiler is aCC 03.27 on HP-UX11 - #include using namespace std; #include #include #include int main ( void ) { auto_ptr >... ggehlot(11)
why define virtual destructor419 (8/11/2005 7:44:19 AM) comp.lang.c++ Hello Experts!! Assume I have a base class called animal. I want this class to be abstract so I make the destructor pure virtual by having this statement. virtual ~Animal() = 0; Destructor will never be inhe... johansson.andersson(272)
Terminal manipulation capabilities452 (11/6/2006 4:28:33 PM) comp.unix.programmer I am writing a terminal based application which is meant to run on several UNICes - Linux, Solaris and AIX 5.x. Other than the standard console io provided by C/C++ libraries I need a few other functionality - ... garth_rockett(50)