0
votes
2answers
12 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 …
4
votes
6answers
188 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
127 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
4answers
55 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
62 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 …
0
votes
1answer
27 views
Threads not copied while forking?
I have one application which has several different threads. Then I forked with fork() but found the child process has to recreate those threads. Is that possible to copy the thread …
1
vote
3answers
78 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 …
0
votes
2answers
14 views
Several tasks run periodically in one .NET winform app.
I will do several tasks periodically in my app, but they have different period, how to do this?
run each task in a separate timer thread.
run all the period task in the same time …
0
votes
3answers
34 views
Using a thread to capture process output
I am using a thread to capture stream output from a process, and then outputting that stream to the eclipse console. The question I have is when to terminate the thread that is doi …
3
votes
1answer
68 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 do …
1
vote
4answers
57 views
java Vector and thread safety
I'm wondering if this code will do any trouble:
I have a vector that is shared among many threads. Every time a thread has to add/remove stuff from the vector I do it under a sync …
3
votes
3answers
70 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
280 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:
…
0
votes
4answers
64 views
bug thread handling in java
public class Test extends Thread{
public void hello(String s){
System.out.println(s);
}
public void run(){
hello("I’mrunning...");
}//endofrun()
publi …
0
votes
1answer
50 views
in Java, I can’t assign values to variables while i’m in the run() function of a thread-extended class.
This is my code. As you see in the run method, I assign values to tStart, tEnd, tAround and wTime. But when the Thread ends, they still have the default values of -1. I try printin …
