Tagged Questions
0
votes
1answer
73 views
Is it bad practise to utilize many threads? (through SwingWorkers)
My Java (Swing) application creates a new SwingWorker object when it needs to (e.g) download data from the Internet and do something at the same time (think display a loader). However, monitoring the ...
2
votes
1answer
44 views
Handler changing UI causes CalledFromWrongThreadException
I've created a Handler that can be accessed from anywhere within the activity and also written a method to make it easier to call the handler:
private Handler textFromBGThread = new Handler() {
...
2
votes
4answers
90 views
Java “unstopped ” executed/finished threads
I've got a question about threads. When I do sth like this:
new Thread(new Runnable(){
@Override
public void run() {
//sth to do
}
}).start();
What happens ...
5
votes
3answers
80 views
Do Java Threads need a cleanup if exceptions occurred
If there is an exception during the run-time of a thread,
Do I need to clean up or something else?
If I have hundreds of threads running, can I use garbage collector to clean up my memory ?
...
2
votes
2answers
128 views
Thread preventing garbage collection of owner
In a library I've created, I have a class, DataPort, that implements functionality similar to the .NET SerialPort class. It talks to some hardware and will raise an event whenever data comes in over ...
8
votes
1answer
157 views
Console.ReadKey vs Console.ReadLine with a Timer
The following code is a well known example to show the difference between a debug and release build:
using System;
using System.Threading;
public static class Program
{
public static void Main()
...
7
votes
1answer
53 views
Techniques for causing consistent GC Churn
I'm looking to benchmark how something performs while contending with a high amount of ongoing garbage collection. I've previously benchmarked how it behaves in a stable, single-threaded run, and I'd ...
0
votes
1answer
40 views
is it worth tracking down memory or thread leaks when re-starting the server every few hours just works? [closed]
This is a common problem I've found in many large projects:
It runs fine in development because you are always stopping and re-starting the server
After it runs in production for many hours, a ...
1
vote
1answer
68 views
WaitHandle.WaitAny allocates copy of WaitHandle[] everytime it is called
I have been noticing that the call to WaitHandle.WaitAny allocates a copy of the WaitHandle[] given to it. As can be seen in the link below or using reflector:
...
3
votes
1answer
108 views
Why doesn't object used in a secondary thread get collected
I've got a class like this:
public class SecondaryThreadClass
{
private string str;
public SecondaryThreadClass ()
{
}
~SecondaryThreadClass(){
...
3
votes
2answers
159 views
abort a thread or just let it to be cleaned by the computer?
I have the following code, I want to abort a thread if it is unfinished in 2 secs.
You can see from the first code that i create a new myThread evertyime in the while loop and do not abort it. Well, ...
11
votes
3answers
408 views
Long running process suspended
I have a .NET 2.0 console application running on a Windows Server GoDaddy VPS in the Visual Studio 2010 IDE in debug mode (F5).
The application periodically freezes (as if the garbage collector has ...
1
vote
1answer
117 views
Multithread Garbage Collection [duplicate]
Possible Duplicate:
Garbage Collection and Threads
I got this question in an interview:
Assuming we have multiple threads created, if one of the threads calls garbage collection, will the ...
1
vote
3answers
125 views
When to return an object back to its pool
I want to use an object-pool in my C# application, and I know that there isn't any reference count in C#. If the same object can be passed to several threads, how can I know when there are no more ...
1
vote
2answers
78 views
what can happen if some thread makes object null and other thread is inside method of that object
Suppose I have -
public class ThreadingIssue {
public B b = new B();
}
class B{
private final Object lock = new Object();
public void someMethod(int timeOut){
...
1
vote
2answers
77 views
Force GC to use another thread-context
I'm working with OpenGL and there are unmanaged objects I need to dispose of manually.
(Specifially textures and vertex-buffers).
The problem is, that the function that frees a vertexbuffer ...
0
votes
0answers
32 views
PHP COM object is shared
A client is using PHP as follows:
function getBlah($something) {
$p1 = "foo";
$p2 = "bar";
$obj = new COM("namespace.class");
$result = $obj->method($p1,$p2,$something);
unset($obj);
...
0
votes
3answers
226 views
Variables lose data once Async Task task is executed
I have a an activity with AsyncTask sub-classed. I lose all my variables once the async task is executed. I am stepping through my code in debug mode. As soon as "MyAsync().execute()" finishes the ...
2
votes
5answers
264 views
Why do threads leak on Android?
I've been noticing in our Android app that every time we exit to the home screen we increase the heap size (leak) by the amount of the ByteArrayOutputStream. The best I have been able to manage is by ...
2
votes
2answers
72 views
Is it that the threads started using 'new Thread(r).start()' garbage collected the same way as other objects?
For doing several tasks like reading and parsing a long file I always a new thread. For example when a user clicks show scenario 1 which is a long text file that first needs to be parsed,I start a new ...
6
votes
1answer
171 views
Garbage collection in Perl threads
This question is a point of curiosity, as one of the two programs below works.
I'm using Image::Magick to resize a number of photos. To save a bit of time, I work on each photo in its own thread, and ...
0
votes
2answers
106 views
Under which circumstances does GC.WaitForPendingFinalizers() block in .NET?
Quoting from the MSDN documentation for GC.WaitForPendingFinalizers():
The thread on which finalizers are run is unspecified, so there is no guarantee that this method will terminate.
I don't ...
0
votes
1answer
126 views
Does a dereferenced Java object still get garbage-collected if it started a thread which is still running?
Consider the following scenario:
An object myObj is instantiated locally in some function myFunc.
myObj starts a thread someThread which runs some background task, e.g. reads from a socket.
myFunc ...
1
vote
2answers
133 views
How to dispose pair of related thread objects?
I have changed the text, so some comments may refer previous version
Below is code sample. There are two threads: observer and observable. Observable is started by main. Observer is started by ...
4
votes
3answers
159 views
Java Multithreading: Behaviour when Reference count of thread object becomes zero
[Before I begin I tried searching related questions, since I found none, I ask a question here]
I am learning Java, and the following scenario hit my head:
class MyThread extends Thread {
void ...
3
votes
5answers
1k views
Java thread garbage collection
Is a thread garbage collected when the run() method within the thread is finished or when the function where it was called from finishes?
I don't have an issue or anything, but I want to avoid memory ...
0
votes
1answer
83 views
System.setproperty in multithreaded application
In my application(multithreaded application) , when GC is invoked, signal handler is called.In this handler, i am trying to set a property to suggest that GC has been invoked.
System.setProperty(key, ...
1
vote
2answers
171 views
Threads and garbage collection
I have a windows service which runs continuously and creates some threads to do some work. I want to make sure that these threads are properly disposed of (garbage collected after they are finished.
...
0
votes
3answers
296 views
Reclaiming memory in a multithreaded environment - parallel tasks
I am currently developing a small simulation utility, using the Task Parallel Library to improve the speed at which results are produced. The simulation itself is a long, cpu intensive job which is ...
-1
votes
1answer
101 views
How to start an object containing a timer in a new thread?
How to start running an object containing a timer in a new thread?
I have the below code that I should probably change it:
class MemoryCleaner : IDisposable
{
private readonly static ...
0
votes
0answers
35 views
Freeing memory in a multi-threaded scenario in Android
My doubt is a very basic one. I have multiple threads in an Android application and a buffer is getting passed between them using bundle.putByteArray (String key, byte[] value) method. I want to know ...
3
votes
1answer
142 views
Release resources from the threads
In my application (at my work), we maintain socket connection pool to handle the communication . There are a number of threads (number is large) which take an active connection from the pool, use it ...
1
vote
1answer
126 views
Does Python's garbage collector harm my application?
Is it bad in Python, when I don't hold a reference of a Thread I created with: threading.Thread(target=worker_method)? Is it possible that the garbage collecor does anything to it, which affects the ...
12
votes
5answers
378 views
Java threads and garbage collector [duplicate]
Possible Duplicate:
Java Thread Garbage collected or not
Consider the following class:
class Foo implements Runnable {
public Foo () {
Thread th = new Thread (this);
...
4
votes
3answers
346 views
Proper way to call glDeleteTextures in a .net object's finalizer
I'm about to implement a managed wrapper class around an OpenGL texture and I want the object finalizer to call glDeleteTextures.
So, the thread calling the finalizer (GC thread?) must be bound to ...
2
votes
1answer
127 views
Is this garbage-collected or not?
Here is some code:
public class A {
private volatile B b;
public void methodC() {
b.doSomething();
}
public void setB(B newB) {
this.b = newB;
}
}
'Thread 1' is executing ...
0
votes
2answers
190 views
Android : Updating thread causes GC to run a ton
I am writing a somewhat complex game engine in Android.
Currently I have a thread used to update subsystems.
Inside the update method is the method to update game logic, which is based on current ...
3
votes
2answers
375 views
Is it possible to create a high-priority thread with a regular JVM, one that wil not be preempted by any other thread?
So my goal is simple: I want to create a high-priority thread in Java without using RTSJ (Real-Time Java VM) or some other proprietary JVM. Let's assume you never create any garbage so GC will not be ...
2
votes
1answer
104 views
In Android development, what are the implications of this : “The debugger and garbage collector are currently loosely integrated.”
Near the very bottom of this page about Debugging on the Android developer site it says
The debugger and garbage collector are currently loosely integrated. The VM guarantees that any object the ...
0
votes
1answer
237 views
XNA game collected by GC after running update
I'm working on writing a splash screen that returns a game mode (int) and an IP address (string). The idea is the splash screen runs, takes user input and then runs the main game with these options. ...
5
votes
3answers
446 views
How does finalize() work in java?
So, I recently discovered the finalize method in Java (not sure why I missed it before, but there it is). This seems like it could be the answer to a lot of the issues I'm working with, but I wanted ...
10
votes
2answers
719 views
.NET application hangs with GC thread deadlock
We have a problem with our application that is using a mixture of managed (C#) and unmanaged (C++) code. Basically we have a exe that invokes a bunch of assemblies and one of these assemblies is a ...
1
vote
1answer
96 views
WeakHashMap<Integer, Vector<IConsumer>>, will Vector be collected if only strong reference to IConsumers?
I have an object Producer which internally starts a thread that will listen for some network events, and at most times block on a receive() method. In this Producer object I have a ...
1
vote
2answers
266 views
new Thread() and Garbage Collection Memory Leak?
I have the following code:
new Thread(new ThreadStart(delegate()
{
// something short
})).Start();
Can garbage collector finalize this instance of Thread while it is in the Stopped state?
...
3
votes
4answers
380 views
new Thread() and Garbage Collection
I have the following code:
new Thread(new ThreadStart(delegate()
{
while (true)
{
//something
}
})).Start();
Can garbage collector finalize this instance of Thread while it is ...
1
vote
2answers
169 views
Tracking WeakReference to objects from multiple threads
I am designing a static message bus that would allow subscribing to and publishing of messages of an arbitrary type. To avoid requiring observers to unsubscribe explicitly, I would like to keep track ...
4
votes
2answers
273 views
How do you stop a thread and flush its registers into the stack?
I'm creating a concurrent memory reclamation algorithm in C++. Periodically, the stacks of executing mutator threads need to be inspected, so that I can see what references the threads are currently ...
1
vote
3answers
92 views
Watching the garbage collector bin an object
I am trying to see when the garbage collector "garbage collects" an object. According to the documentation, the finalize() method is called once when the garbage collector "deletes" an object.
I ...
2
votes
2answers
494 views
Python threading.Thread, scopes and garbage collection
Say I derive from threading.Thread:
from threading import Thread
class Worker(Thread):
def start(self):
self.running = True
Thread.start(self)
def terminate(self):
...
1
vote
4answers
212 views
Thread Pool Workers Overwhelmed With Runnables Crashing the JVM
Brief
I am running a multithreaded tcp server that uses a fixed thread pool with an unbounded Runnable queue. The clients dispatch the runnables to the pool.
In my stress test scenario, 600 clients ...

