0
votes
2answers
19 views
C# .. Asynchronous Sockets .. where is the State Object Stored?
Hi all,
A simple question really, but one where I cannot find any anwsers too.
When I execute an Asynchronous Socket operation, such as :
socket.BeginSend
(
new byte[]{6}, …
0
votes
7answers
72 views
Lock before reading a global string?
I have class than spins off a backgroundworker to do some processor intensive stuff. The background worker reads a few strings that are declared globally for the whole class... do …
3
votes
4answers
67 views
C#: How to test a basic threaded worker class
I'm dipping my toes in how to test multi-threaded stuff, but not quite sure how to get started. I'm sure I will figure more stuff out easier if I could just get stuff going, so I w …
6
votes
5answers
132 views
Is ConcurrentHashMap.get() guaranteed to see a previous ConcurrentHashMap.put() by different thread?
Is ConcurrentHashMap.get() guaranteed to see a previous ConcurrentHashMap.put() by different thread? My expectation is that is is, and reading the JavaDocs seems to indicate so, b …
2
votes
5answers
146 views
Java - why are wait() and notify() declared on Object Class?
Hi Experts,
Please define why the wait() and notify() methods are in Object class and not in Thread class?
Thanx
1
vote
5answers
153 views
copy file in a thread
I am trying to write to copy a file by invoking a separate thread.
Here is my form code:
unit frmFileCopy;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Grap …
0
votes
1answer
25 views
iPhone - return from an NSOperation
Hi
I am using a subclass of NSOperation to do some background processes. I want the operation to be cancelled when the user clicks a button.
Here's what my NSOperation subclass l …
2
votes
3answers
63 views
How does one start a thread in Clojure?
I've read a lot about how great Clojure is when it comes to concurrency, but none of the tutorials I've read actually explain how to create a thread. Do you just do (.start (Thread …
0
votes
2answers
67 views
Keeping a thread alive in a C# application [closed]
Possible Duplicate:
Locking main() thread
Hello,
Below you'll find my code, Main calls two threads, one initiates an event handler that returns the values of registry key …
0
votes
6answers
92 views
Is there any way that Enter/LeaveCriticalSection could leave a handle behind
I have the following code in my program:
EnterCriticalSection(&critsec[x]);
// stuff
LeaveCriticalSection(&critsec[x]);
It works fine 99.999% of the time but occas …
0
votes
7answers
65 views
Should I read file in separate thread in this case ?
Hi,
I am writing an application for embedded linux where 5% of processor time is going in reading a file and 95% on processing it. Can I get some performance improvement if I read …
1
vote
4answers
78 views
C# Can Multiple Classes LOCK the Same Object using multiple References?
Hi all,
I want to make multiple instances of this class.
public class Worker
{
private object _lockObject;
private Thread _workerThread;
private string _name;
pu …
3
votes
2answers
33 views
What is the best way to search multiple sources simultaneously?
I'm writing a phonebook search, that will query multiple remote sources but I'm wondering how it's best to approach this task.
The easiest way to do this is to take the query, sta …
1
vote
8answers
145 views
Interlocked and Memory Barriers
I have a question about the following code sample (*m_value* isn't volatile, and every thread runs on a separate processor)
void Foo() // executed by thread #1, BEFORE Bar() is ex …
1
vote
2answers
41 views
What will it take for Transactional Memory to be viable?
I've been doing some work on transactional memory and its viability for systems programming (databases, operating systems, servers, etc.). My own experience employing transactions, …
