SIGPIPE to be handled Programming Software Development by rpbatni …where the variable errno is set to EPIPE and signal SIGPIPE is generated… We have two servers communicating with each… and got very less info about the causes of SIGPIPE… I have asked my clients to increase the resources…… Please share with me all causes of the generation of SIGPIPE ( other than the one I have listed above )… Contact… Tcp socket send help Programming Software Development by srinivas88 … client on executing the send command 2 times returns a SIGPIPE signal . I want to know y this happens. The client… must recieve sigpipe immediately when it sends a message after the socket connection… sends 2 messages only is it able to receive a sigpipe signal, shouldn't it be like the cleint receives… Re: Tcp socket send help Programming Software Development by srinivas88 … it goes down) . As long as I dont receive a sigpipe signal i wouldnt know that the pipe is broken. Also… Re: Tcp socket send help Programming Software Development by srinivas88 …; char mesg[MAXLEN]; char reply[MAXLEN]; int port = PORT; signal(SIGPIPE, sigHlr); if ((sockfd = socket(AF_INET,SOCK_STREAM,0)) < 0) { cout… Threaded Socket Issue Programming Software Development by patrickkonsor …(&sem1, 0, 0); sem_init(&sem2, 0, 0); sigset(SIGPIPE, SIG_IGN); // Get Socket socket_main = socket(AF_INET, SOCK_STREAM, 0); if (socket_main… C++ to delphi Programming Software Development by htataw …; } } if (host == NULL || port == 0 || errflg) { usage(argv[0]); } signal(SIGPIPE, SIG_IGN); /* create a TCP socket */ if ((fd=socket(AF_INET, SOCK_STREAM… Re: C++ to delphi Programming Software Development by pramudiyanto … = 0 or errflg) then begin usage(argv[0]); end; signal(SIGPIPE, SIG_IGN); (* create a TCP socket *) if ((fd=socket(AF_INET, SOCK_STREAM… DBD::Oracle error Programming Software Development by williamshen25 …'; $SIG{'QUIT'} = 'IGNORE'; $SIG{'TERM'} = 'IGNORE'; $SIG{'PIPE'} = 'IGNORE'; # signal(SIGPIPE, SIG_IGN); $SIG{'CHLD'} = 'IGNORE'; my $pid = fork(); die "$!"… Re: C++ Please Help Killed by signal 8(SIGFPE). Programming Software Development by Clinton Portis … violation */ #define SIGSYS 12 /* bad argument to system call */ #define SIGPIPE 13 /* write on a pipe with no one to read… Re: code conversion from C++ to delphi Programming Software Development by htataw …; } } if (host == NULL || port == 0 || errflg) { usage(argv[0]); } signal(SIGPIPE, SIG_IGN); /* create a TCP socket */ if ((fd=socket(AF_INET, SOCK_STREAM… Re: textures and ATI cards == crash Programming Software Development by vextorspace …=0x10000004 SIGFPE: [libjvm.so+0x5dff20], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004 SIGPIPE: [libjvm.so+0x5dff20], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004 SIGXFSZ: [libjvm… Re: serial communication using c programming in linux not working Programming Software Development by L7Sqr …. When this happens the writing process will also receive a SIGPIPE signal. (Thus, the write return value is seen only if… Re: my_config.h:506:16: error: multiple types in one declaration Programming Software Development by Chrisadams … */ #define sigset_t int #define mode_t int #define SIGQUIT SIGTERM #define SIGPIPE SIGINT #define isnan _isnan #define finite _finite #define popen _popen… Re: SIGPIPE to be handled Programming Software Development by rpbatni You can send mails to my mail-ID even Re: SIGPIPE to be handled Programming Software Development by rpbatni This is very bad that i dint get even a single response Re: Tcp socket send help Programming Software Development by L7Sqr The nice thing about TCP is that it manages so much for you under the hood. The problem with TCP is that it manages so much for you under the hood. There is the possibility, due to the send window, that you can have data sent by the client and not received by the server that encompasses several messages. It is due to this situation that your [icode… Re: Tcp socket send help Programming Software Development by srinivas88 So how do I make a change such that I receive the signal immediately after I send 1st message?? Re: Tcp socket send help Programming Software Development by L7Sqr Depending on your situation, you may not be able to. Re: C++ to delphi Programming Software Development by htataw or delphi4 one's ... Any help would be very appreciated. Re: C++ to delphi Programming Software Development by pramudiyanto hi there... I got coverter which convert the C/C++ code into Pascal language. if you're interesting, please give me a PM. Thanks. Re: C++ to delphi Programming Software Development by htataw Hi Pramu, Thanks for your reply, If you try it with the above code and see the result together. Cheers. Re: C++ to delphi Programming Software Development by ChaosKnight11 Why not keep it in C++? Delphi will never be a match for C++ (Cross-platform, faster execution, more features etc) Re: C++ to delphi Programming Software Development by htataw Hi, Sure C++ is the most powerful programming language but just for my own need I would like to convert it to Delphi (use it on a PC instead of mainframe). Thanks Re: DBD::Oracle error Programming Software Development by williamshen25 Hey I have figured out there is something wrong with my DBD installation, I corrected it and it run fine when I do it manually on command line, but still getting same error when crontab calls it. I read it on some other site that people suggest to set LD_LIBRARY_PATH to point to where the shared library is. But as you can see, I have set it to the … Re: DBD::Oracle error Programming Software Development by mitchems What user does the crontab run as? Does it have the rights to read that file? Re: DBD::Oracle error Programming Software Development by williamshen25 crontab runs as root.