[EMAIL PROTECTED] wrote: > I need to know if syswrite is a blocking call. I am using it to write > to a UNIX Socket. Somewhere in my application, my code is getting > blocked. I have narrowed it down to the data write code. > > So I am wondering if syswrite blocks.
I think the default is blocking on most all socket calls. You can set the socket to non-blocking or do a select first to see if it will block. _______________________________________________ ActivePerl mailing list [email protected] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
