| bio | website | |
|---|---|---|
| location | Seattle, WA | |
| age | ||
| visits | member for | 4 years |
| seen | 4 hours ago | |
| stats | profile views | 680 |
|
1d |
answered | c define multiline macro? |
|
May 20 |
comment |
RAM / Addresses If the address space of the monitors were 3x bigger, would it change the answer? ;) |
|
May 20 |
comment |
RAM / Addresses Are you right? I don't know. I made in "C" in this class. And that was a long time ago. :) |
|
May 20 |
revised |
RAM / Addresses added 63 characters in body |
|
May 20 |
comment |
RAM / Addresses Correct. You are growing from 2^32 to 2^33. |
|
May 20 |
answered | RAM / Addresses |
|
May 19 |
comment |
select() socket call CPU consumption No, threads and processes do not consume CPU when blocked. |
|
May 19 |
answered | select() socket call CPU consumption |
|
May 19 |
answered | Can I determine the size/length of an array in C++ without having to hardcode it? |
|
May 19 |
comment |
Always print EAGAIN when calling accept after epoll_wait Switch to calling poll() instead of epoll for your polling mechanism. linux.die.net/man/2/poll |
|
May 19 |
revised |
Always print EAGAIN when calling accept after epoll_wait deleted 8 characters in body |
|
May 19 |
answered | Always print EAGAIN when calling accept after epoll_wait |
|
May 19 |
comment |
Server Sockets and Amazon EC2 Even if it's using just 10% on your laptop, that suggests a bug. Ask yourself this - why is it using more than 1% on your laptop? By the way, how are you measuring CPU usage on an EC2 instance? |
|
May 19 |
comment |
What does write(2) return of zero mean and will I eventually make progress (non-zero result)? Show us your code! |
|
May 19 |
comment |
What does write(2) return of zero mean and will I eventually make progress (non-zero result)? "in non-blocking mode, a zero length write means the socket send buffer is full" - Are you certain about that? I don't believe that is a correct statement. If the send buffer was full, the write call would return -1 and errno would be set to EAGAIN or EWOULDBLOCK. |
|
May 17 |
awarded | Nice Question |
|
May 17 |
accepted | How many packets or bytes are in the socket receive queue? |
|
May 17 |
comment |
assignments operator between father and son Unless your C++ class has dynamically allocated memory, or a resource that needs a specific handling for one of it's member variables, then it's better to NOT have an overloaded assignment operator. Let the compiler generate it for you. |
|
May 16 |
answered | Sockets, Threads and file discriptors in Linux |
|
May 13 |
comment |
Why the first client sees to have source ip of 0.0.0.0? This is likely the correct answer. As per the man page for recvfrom: "The returned address is truncated if the buffer provided is too small; in this case, addrlen will return a value greater than was supplied to the call." So his address length member gets properly initialized AFTER he makes the first recvfrom call. |