Forum: C Aug 5th, 2008 |
| Replies: 1 Views: 462 Hi
I need some ideas to force MQGET call fail on receiving interupt signal in AIX O/S.
Thanks in Advance |
Forum: C Jul 30th, 2008 |
| Replies: 3 Views: 939 HI
I would like to pass new argument to cureently running process with out interuption in unix using c code
can any one Idea on this
Please suggest
Thanks in Advance
Madan |
Forum: Shell Scripting Jul 14th, 2008 |
| Replies: 6 Views: 6,521 Thanks for you help
Incase any info required will be intouch you
Thank you |
Forum: Shell Scripting Jul 14th, 2008 |
| Replies: 6 Views: 6,521 Hi Thanks for reply ..
I am new to the scripting ... also this concept could you please give the some detail explanation on this , so it may be helpful.
Thanks in Advance
Madan |
Forum: Shell Scripting Jul 11th, 2008 |
| Replies: 6 Views: 6,521 Hi can nayone help me to write SFTP script to copy files from one server to another sever not ftp script
any help appreciated
Thank you
Madan |
Forum: Shell Scripting Jul 11th, 2008 |
| Replies: 6 Views: 6,521 :-/
Hi can nayone help me to write SFTP script to copy files from one server to another sever
any help appreciated
Thank you
Madan |
Forum: Shell Scripting Dec 19th, 2007 |
| Replies: 1 Views: 1,153 HI
I would likt to create input files for testing, format is like this
INPUT Format
DISP NUM BYTES Desc
0 4 CODE
4 10 EMP NO
14 3 AGE |
Forum: Shell Scripting Dec 19th, 2007 |
| Replies: 2 Views: 1,376 HI
I would likt to create input files for testing, format is like this
INPUT Format
DISP NUM BYTES Desc
0 4 CODE
4 10 EMP NO
14 3 ... |
Forum: C++ Oct 30th, 2006 |
| Replies: 4 Views: 15,582 :p Hi Dear
you try with this code
#include <iostream>
using namespace std;
class Singleton
{
private: |
Forum: C++ Oct 27th, 2006 |
| Replies: 6 Views: 7,000 Hi This is Singleton class program, please let me know any changes required in this code...............
#include <iostream>
using namespace std;
class Singleton
{
private:
static bool... |
Forum: C Oct 23rd, 2006 |
| Replies: 6 Views: 2,233 We cannot have static friend function............ because
1.since static member functions can access only static data members...where as friend function can access all the members.
2.Friend... |
Forum: C++ Oct 23rd, 2006 |
| Replies: 4 Views: 15,582 #include <iostream>
using namespace std ;
class Singleton
{
public:
// Implement the logic here to instantiate the class for the first time by validating the
// member pointer. If member... |