2
votes
5answers
157 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
4
votes
2answers
48 views
java: Difference between thread’s context class loader and normal classloader
What is the difference between a thread's context class loader and a normal classloader.
That is, if Thread.currentThread().getContextClassLoader() and getClass().getClassLoader() …
7
votes
7answers
171 views
Process vs Thread
Recently I have been asked question in the interview whats the difference between process and thread. Really I did not know answer. I thought for a minute and gave very weird answe …
0
votes
2answers
103 views
Calling C like callback within a thread
Hi;
I have a C static library with,
A callback definition:
typedef void (*HandleEvents) (enum events eventID, int msgSize, char *msg);
A function in the library:
int init(Ha …
0
votes
0answers
13 views
Thread Synchronization Scenario Feedback
I need some feedback on a threading problem that I am trying to solve.
The problem (this is coded as a winform application in C#)
I am comparing to lists which should be identical …
0
votes
4answers
60 views
Loading image in thread with WPF
Hi !
I'm trying to make a listbox that display pictures from internet. The items are provided by binding itemsource to a model that contain the URL of the image and some other pro …
0
votes
4answers
83 views
Thread & Queue vs Serial performance
I though it'll be interesting to look at threads and queues, so I've written 2 scripts, one will break a file up and encrypt each chunk in a thread, the other will do it serially. …
5
votes
3answers
93 views
Why doesn’t Thread implement IDisposable?
I noticed that System.Threading.Thread implements a finalizer but not IDisposable. The recommended practice is to always implement IDisposable when a finalizer is implemented. Jeff …
4
votes
6answers
268 views
Do threads share the heap?
As far as I know each thread gets a distinct stack when the thread is created by the OS. I wonder if each thread has a heap distinct to itself also?
1
vote
8answers
325 views
C#/.NET: How to get the thread id from a thread?
In C# when deubgging threads for example, you can see each thread's ID.
But I couldn't find a way to get that same thread, programmatically. And I couldn't even get the id of the c …
0
votes
1answer
66 views
Multithreading: Read from / write to a pipe
I write some data to a pipe - possibly lots of data and at random intervals. How to read the data from the pipe?
Is this ok:
in the main thread (current process) create two more …
0
votes
2answers
19 views
win32com and PAMIE web page open timeout
Hello,
currently im making some crawler script,one of problem is
sometimes if i open webpage with PAMIE,webpage can't open and hang forever.
are there any method to close PAMIE's …
0
votes
4answers
83 views
Multithreading in WCF with accurate timer requirement
I have a WCF app that accepts requests to start a job. Each job needs to do something after exactly X minutes (e.g. 5 mins.), there can also be a job request at any time and simult …
0
votes
2answers
85 views
C# Thread and Class problems
Okay, so i have this code i wrote:
class Connection
{
public static StreamWriter writer;
public static string SERVER;
private static int PORT;
private static strin …
1
vote
3answers
96 views
How can I tell reliably if a boost thread has exited its run method?
I assumed joinable would indicate this, however, it does not seem to be the case.
In a worker class, I was trying to indicate that it was still processing through a predicate:
b …
