Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
7answers
24k views

How to prevent SIGPIPEs (or handle them properly)

I have a small server program that accepts connections on a TCP or local UNIX socket, reads a simple command and, depending on the command, sends a reply. The problem is that the client may have no ...
3
votes
1answer
249 views

Python - How to catch a broken pipe

I have just learned about SIGPIPE, and then read about how to handle these in Python. Among other sources, I have read: How to handle a broken pipe (SIGPIPE) in python? Let's say that the pipe ...
2
votes
1answer
94 views

SIGPIPE With Running Program

I have two daemons, and A is speaking to B. B is listening on a port, and A opens a tcp connection to that port. A is able to open a socket to B, but when it attempts to actually write said socket, I ...
1
vote
2answers
58 views

How to tell if a downstream process in a Unix pipe has crashed

I have a Linux process (let's call it the main process) whose standard output is piped to another process (called the downstream process) by means of the shell's pipe operator (|). The main process is ...
1
vote
1answer
48 views

App crashes with SIGPIPE exception after doing a wrong connection to FTP server

I try to make an app that can make a connection into a FTP server. I've use Chilkat library to do this connection. The problem is, I want to test my app and make a wrong connection. So i make a ...
1
vote
1answer
120 views

How to ensure popen()ed process runs destructors on exit?

If I have a pipe to run some command, the piped command needs to do some cleanup, however, if the processes that started the pipe has an error, the piped command is not cleaning up. Is the piped ...
1
vote
2answers
219 views

AsyncUDPSocket broken pipe after locking phone with application suspended in background

I'm using the AsyncUDPSocket third party library in my iPhone app and for the most part it works great. I have a singleton instance of an AsyncUDPSocket that I use for all my network traffic. My app ...
1
vote
1answer
418 views

SIGPIPE crash when switching background task

I'm experiencing a weird crash when sending my app into the background, loading a new app, switching the device into sleep mode, waking up the device, closing the new app and then opening my app from ...
1
vote
2answers
197 views

Can writes to a datagram socket ever raise SIGPIPE?

I'm working with some code that needs to be safe against killing the caller due to SIGPIPE, but the only socket writes it's performing are going to datagram sockets (both UDP and Unix domain datagram ...
1
vote
2answers
327 views

Does any of the TCP Settings impact SIGPIPE?

I tested the same testcode (Server - Client) on two systems. In one I am getting a SIGPIPE, in another I am not getting SIGPIPE. The Test Scenario is something like below: Client Connect to a ...
1
vote
1answer
645 views

Ignore SIGPIPE for a single popen'd FILE*

The code I am looking at is here: http://github.com/andymatuschak/Sparkle/blob/8ea15468b4a8c0487ca7a72f3c9e6ffb708c6af8/SUPipedUnarchiver.m Sparkle is like a plugin. It can be instantiated in a ...
0
votes
3answers
47 views

SIGPIPE not being generated immediately after 1st send

I want to know whether its possible for tcp socket to report any broken pipe error immediately. Currently i am catching the sigpipe signal at the client side when server goes down ... but i found that ...
0
votes
1answer
110 views

Using signals and sigpipe

I'm working on an assignment that involves writing a program to process data (calculate pi) using fork (processes), signals and select. I'm working right now on the signals and what I think I want to ...
0
votes
2answers
336 views

Writing a webserver in objective c— getting a SIGPIPE call when uploading larger files

I am writing a webserver for a music sharing app ... when I have a large file (i.e an mp3) this does not work. It crashes on SIGPIPE error code. The header I am sending has "Connection: close" -- but ...
0
votes
2answers
154 views

Caught a fatal signal: SIGBUS(7) on node 2/32

I'm trying to run NAS-UPC benchmarks on a 32 node cluster. It works fine in cases where the problem size is small . When I graduate to a bigger problem size (CLASS D), I get this error (for MG ...
0
votes
1answer
429 views

TCP client-server SIGPIPE

I am designing and testing a client server program based on TCP sockets(Internet domain). Currently , I am testing it on my local machine and not able to understand the following about SIGPIPE. *. ...
0
votes
1answer
808 views

SIGPIPE error in iOS4 when app is running background and lock screen

I use BSD socket in my app to send and receive data on iphone4(iOS4.1),there are three situations in my app: app is running in foreground and screen locks, it's fine. app is running in background ...
0
votes
5answers
1k views

How to catch sigpipe in iphone app?

How can i catch sigpipe in iphone/objective-c? thanks