7
votes
7answers
196 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 answer.
Threads share …
6
votes
9answers
217 views
.NET Multithreading - Do I need to synchronise access to a variable of primitive type?
The scenario
I have a class with a bool Enabled property, that is used by a loop on another thread to see whether it should stop or not. The idea is that a different thread can set that property to …
5
votes
2answers
70 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() return different …
5
votes
3answers
100 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. Jeffrey Richter wrote …
5
votes
1answer
426 views
Python: is os.read() / os.write() on an os.pipe() threadsafe?
Hello!
Consider:
pipe_read, pipe_write = os.pipe()
Now, I would like to know two things:
(1) I have two threads. If I guarantee that only one is reading os.read(pipe_read,n) and the other is only …
4
votes
6answers
304 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?
4
votes
1answer
81 views
Joining a boost::thread instance in the destructor
I'm seeing an issue where a call to boost's thread->join in a destructor leads to a deadlock. I don't understand why, and I'm not too keen on keeping code that just works (and I don't understand why …
4
votes
3answers
126 views
how to execute a piece of code only after all threads are done
Hi,
I have a logging code which needs to be executed after all threads are executed.
Thread t1 = new MyThread();
Thread t2 = new MyThread();
t1.run();
t2.run();
doLogging();
Is there any way to …
4
votes
4answers
198 views
Synchronization in threads for Java
I have a home grown web server in my app. This web server spawns a new thread for every request that comes into the socket to be accepted. I want the web server to wait until a specific point is hit …
4
votes
2answers
195 views
If MessageBox()/related are synchronous, why doesn’t my message loop freeze?
Why is it that if I call a seemingly synchronous Windows function like MessageBox() inside of my message loop, the loop itself doesn't freeze as if I called Sleep() (or a similar function) instead? To …
3
votes
5answers
199 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
3
votes
3answers
82 views
What is the benefit of ThreadGroup in java over creating separate threads?
Many methods like stop(), resume(), suspend() etc are deprecated.
So is it useful to create threads using ThreadGroup?
3
votes
9answers
302 views
Processing huge text files
Problem:
I've a huge raw text file (assume of 3gig), I need to go through each word in the file
and find out that a word appears how many times in the file.
My Proposed Solution:
Split the huge file …
3
votes
2answers
68 views
How to create a Run Loop which is kicked only by performSelector… method calls?
Hey guys!
I'm messing around with threads a little bit. Now consider this:
I have a main thread. I start a new thread. In it's entry-point method, I want to make a run loop. Now the documentation …
3
votes
5answers
173 views
Java Thread problem
I want to stop threads by using a boolean field. I have implemented some code to do this which is as follows:
My thread class is like this:
public class ParserThread implements Runnable {
…
