0
votes
1answer
22 views
Using Ruby’s “ready?” IO method with gets, puts, etc
The standard Ruby library "io/wait" provides a method on IO objects ready? that returns non-nil if there is input available, nil or false otherwise. I know some methods like sysre …
0
votes
4answers
49 views
Atomic Instruction
What do you mean by Atomic instructions?
How does the following become Atomic?
TestAndSet
int TestAndSet(int *x){
register int temp = *x;
*x = 1;
return temp;
}
From …
0
votes
3answers
127 views
Is there a simple method for checking whether a Ruby IO instance will block on read()?
I'm looking for a method in Ruby which is basically this:
io.ready_for_read?
I just want to check whether a given IO object (in my case, the result of a popen call) has output a …
0
votes
2answers
632 views
Detect key press (non-blocking) w/o getc/gets in Ruby
I have a simple task that needs to wait for something to change on the filesystem (it's essentially a compiler for prototypes). So I've a simple infinite loop with a 5 second slee …
0
votes
1answer
29 views
SSL and NIO Non-blocking Sockets
How do you recommend making a highly scalable SSL client?
Currently, I'm using plain Sockets to connect to the Apple APNS server which requires a non-HTTP SSL sockets. I consider …
0
votes
2answers
70 views
[Resolved]Python socket not receiving anything
I'm trying to receive a variable length stream from a camera with python, but get weird behaviour. This is Python 2.6.4 (r264:75706) on linux(Ubuntu 9.10)
The message is supposed …
0
votes
3answers
636 views
Simple thread-safe non-blocking file logger class in c#
I have a web application, that will log some information to a file. I am looking for a simple thread-safe non-blocking file logger class in c#. I have little experience with thread …
0
votes
3answers
123 views
C# non-blocking socket without while(true) loop
I'm just trying to make some socket programming, using non-blocking sockets in c#.
The various samples that i've found, such as this, seems to use a while(true) loop, but this app …
3
votes
5answers
231 views
What is the difference between lockless and non-blocking?
Hi,
In the context of data-structures synchronization, can someone clarify the difference between "lockless" and "non-blocking"? These terms seem to be used interchangeably by a l …
0
votes
4answers
156 views
How to check if stdin is still opened without blocking?
I need my program written in pure C to stop execution when stdin is closed.
There is indefinite work done in program main cycle, and there is no way I can use blocking checks (lik …
5
votes
4answers
2k views
Non-blocking read on a stream in python.
Hi,
I'm using the subprocess module to start a subprocess and connect to it's output stream (stdout). I want to be able to execute non-blocking reads on its stdout. Is there a way …
0
votes
2answers
63 views
Losing bytes on an epoll controlled non-blocking socket when the other side writes and closes
I've a non-blocking socket currently subscribed to:
ev.events = EPOLLIN | EPOLLPRI | EPOLLERR | EPOLLHUP | EPOLLRDHUP| EPOLLET;
It receives a couple of EPOLLINs which I read no …
3
votes
7answers
196 views
sending a non-blocking HTTP POST request
Hi,
I have a two websites in php and python.
When a user sends a request to the server I need php/python to send an HTTP POST request to a remote server. I want to reply to the us …
7
votes
3answers
487 views
Simplest way to do a fire and forget method in C#?
I saw in WCF they have the [OperationContract(IsOneWay = true)] attribute. But WCF seems kind of slow and heavy just to do create a nonblocking function. Ideally there would be s …
0
votes
0answers
36 views
Problem with O_NONBLOCK Pipe
Hi,
I'm trying to send and receive using pipes:
send.cpp
struct
{
long a;
long b;
}T;
cout << "1" << endl;
if ( access ( FIFO_NAME, F_OK ) == -1 ) {
r …
