0
votes
3answers
62 views

Monitoring using java Thread

I want to monitor servers(tomcat) running or not at regular interval.I'm doing this as stand alone application.I want to call the server monitor program at regular interval(every 30 min )...How to do ...
0
votes
0answers
53 views

Read write multithread poolthread return [closed]

I'm trying to create a data server, that will read and write files using a threadpool and using a list of locks for each filepath. Problem Solved.
0
votes
1answer
42 views

How does Monitor Synchronisation work?

So I'm reading about synchronisation and have come across Monitors, but can't seem to grasp how they work. I see the general layout is something in the format of the following with what I can see as ...
0
votes
0answers
29 views

What does it mean that Monitor is unbound and can be called directly from any context?

There is a sentence in Monitor description about its features, that states: It is unbound, which means it can be called directly from any context Does anyone might explain what means context ...
0
votes
0answers
28 views

Capture Thread State Change Duration and Timestamp

I am in need of monitoring the time it takes for a thread to change state to suspended, and back to active. Long story: I need to monitor the negative values of a DLL injection which is part of our ...
0
votes
1answer
165 views

SpinLock in C#. In which type of algorithm SpinLock is a better choice against Monitor? [duplicate]

Possible Duplicate: Why everyone states that SpinLock is faster? This question is concerning SpinLock, Monitor & Interlocked. I made 2 tests which test the performance of Monitor, ...
1
vote
1answer
213 views

Why everyone states that SpinLock is faster? [closed]

I have read a lot of docs and articles and posts all over the internet. Almost everyone and everywhere commits that SpinLock is faster for a short running pieces of code, but I made a test, and it ...
0
votes
1answer
81 views

Strange behavior of java threads

I've just found strange behavior in java threads. Here is a code example: class Job extends Thread { private Integer number = 0; public void run() { for (int i = 1; i < 1000000; ...
1
vote
2answers
109 views

lock/Monitor with multiple threads

In .NET, suppose thread A locks an object. Meanwhile, thread B and thread C are blocked and wait for the object to be unlocked by thread A. Now, thread A unlocked the object. which of the threads ...
1
vote
1answer
348 views

C# Monitor.TryEnter

I am using a Threading.Timer to run the message pump in my application. Sometimes the work in required takes longer than the intervals between the timer's intervals, and I need the code to then be ...
0
votes
2answers
122 views

Sleeping thread losses ownership of monitor lock?

I wanted to verify in my own eyes the different between sleep and wait. Wait can only be done in a synchronized block because it releases the ownership of the monitor lock. While sleep is not related ...
1
vote
1answer
102 views

Monitor.Pulse loses signals?

I have this producer / consumer code : MAIN : static void Main() { using(PCQueue q = new PCQueue(2)) { for(int i = 0; i < 10; i++) { int itemNumber = i; // ...
0
votes
2answers
112 views

Monitor.Pulse() has no effect

Here is fragment of my code. I suppose, that one thread should work without waiting till previous thread is finished. But I recognized that all threads started in series and my pulse call has no ...
2
votes
2answers
151 views

Why does Threading::Monitor::TryEnter succeed more than once?

I'm trying to secure some multi-threaded code and am in the process of adding unit tests to prove I've fixed corruption we'd previously been seeing. In doing so though I've come across some ...
0
votes
1answer
132 views

pausing and stopping threads

I have the following code which is working but it is very dirty. Actually the code is just fine except the part I added: a pause and a stop button. I'm new to c# so any help would be apreciated. ...
2
votes
1answer
192 views

Is there a way to use cherrypy's Monitor to perform a single task and then stop?

I have a web application that requests a report that takes more than 10 minutes to run. Apart from improving that performance, I would for now prefer to set up a thread to run the report and mail it ...
2
votes
1answer
161 views

thread.join trigger thread.wait(), but why it doesn't need thread monitor?

Thread thread = new Thread(new Runnable() { @Override public void run() { try { TimeUnit.SECONDS.sleep(1000); } catch (InterruptedException ...
5
votes
3answers
2k views

What's the meaning for object's monitor in java? Why use this word?

When reading articles about java thread, I often notice the expression: "current thread is the owner of this object's monitor.". I catch the meaning: the thread gets the right to operate on the ...
0
votes
1answer
86 views

Multithreading issue on collection

I have an issue with threading in my application. As often with threading issue, it doesnt occur all the time. Sometimes a collectionChanged exception occurs on this code : SyncLock _padLock ...
2
votes
1answer
91 views

Efficient approach to multithreaded set difference

I have a finite set of consumer threads each consuming a job. Once they process the job, they have a list of subjobs that were listed in the consumed job. I need to add the subjobs from that list that ...
1
vote
3answers
961 views

Implement semaphores using the monitor concept

I am trying to implement semaphores using the monitor concept in Java. I.e Java class that implements a weak counting semaphore (using methods init, signal and wait) Can someone tell me if this class ...
0
votes
2answers
582 views

C# Monitor/Semaphore Concurrency Produce-Consumer for Buffer

I am working on solving a problem with the typical producer-consumer problem. I have multiple producers, and one consumer. There are n producer threads that each call SetOne(OrderObject order) and ...
5
votes
4answers
830 views

Is it ok to read a shared boolean flag without locking it when another thread may set it (at most once)?

I would like my thread to shut down more gracefully so I am trying to implement a simple signalling mechanism. I don't think I want a fully event-driven thread so I have a worker with a method to ...
1
vote
0answers
426 views

Monitor pattern using boost threads

Being new to boost::thread I was trying the other day to write a BlockingQueue (in my opinion the most practical synchronization construct ever). That's accomplished either using a semaphore or a ...
2
votes
5answers
423 views

Implement a monitor thread in Java

Well I am not familiar with threads in java, so I am dealing with this problem: I have a singleton object who contains some objects (let say sessions) and each object has a duration time, so that ...
4
votes
4answers
1k views

Monitor.Wait - while or if?

Currently, I'm learning for a multithreading exam. I read the good threading article of albahari. I've got a question at the monitor usage - why is here used a loop in place of an if? lock (_locker) ...
6
votes
3answers
307 views

How can .NET threads be waiting on a syncblk which is not owned by any thread?

I have a crash dump from my app showing a bunch of threads waiting on a syncblk, and the syncblk shows that it has no owning thread. How is that possible? I'm trying to reproduce the symptom in a ...
19
votes
3answers
10k views

Semaphore vs. Monitors - what's the difference?

What are the major differences between a Monitor and a Semaphore?
1
vote
2answers
100 views

Order of Monitor regain in Java

Well, I was wrong - the stating below does not apply, not in my test runs. This mail (wot, no chickens?) from the the Java Thread mailing list is quite old, in fact it's from 25th September 1996. ...
3
votes
4answers
1k views

Java thread execution order after unlock

Let's say I have 2 threads, t1 and t2, and a lock object, m. Thread t1 is in an infinite loop, where at each iteration, it grabs a lock on m, does some work, unlocks m and starts over immediately. ...
4
votes
2answers
163 views

How to see what monitor is a thread waiting for via API?

We have a junit test runner which timeout if one test is hanging. Now I want create a thread dump via API. I know I can request the stacktraces via Thread.getAllStackTraces(). But the thread dump on ...
1
vote
1answer
474 views

ASP.Net — monitors/lock or mutex

I have an ASP.net (c#) application, that has a portion of code that modifies a globally accessible resource (like a web.config file). When modifying the resource, naturally, to prevent race ...
0
votes
2answers
531 views

Can multiple threads wait on one object at once?

If wait can only be called from a synchronized context, and you can only call wait on an object while holding its lock, then how can multiple threads wait on the same object? Furthermore, since notify ...
3
votes
1answer
553 views

C# - How do I Wake a Sleeping thread?

I was able to solve this myself by reading a bit further, I was asuming that you should refer to Threads rather than to objects. It works now. :) Original post: I've looked into most of the ...
0
votes
5answers
1k views

Waiting for an async method to end in C#

Sample code: class Program { static readonly object locker = new object(); static void Main(string[] args) { Func(); Func(); Thread.Sleep(6000); } ...
4
votes
2answers
937 views

How do you find the owner of a lock (Monitor)?

Is there a way to discover what thread currently owns a lock? Specifically I am looking for some code to print out the thread that is preventing a lock from being taken. I want to try to lock for a ...
11
votes
2answers
3k views

Lock (Monitor) internal implementation in .NET

For mastering of some technology you have to know how it's made at one abstraction level lower. In case of multithreading programming, it will be good to know about synchronization primitives. Here is ...
3
votes
4answers
177 views

ObjectPool implementation deadlocks

I have implemented a generic ObjectPool class but have experienced that it sometime deadlocks (happens at Monitor.Wait(poolLock)) Can anyone spot the error? public class ObjectPool<T> where T ...
17
votes
5answers
11k views

Monitor vs lock

When is it appropriate to use either the Monitor class or the lock keyword for thread safety in C#? EDIT: It seems from the answers so far that lock is short hand for a series of calls to the Monitor ...
1
vote
1answer
391 views

Multi-threaded code and condition variable usage

A multi-threaded piece of code accesses a resource (eg: a filesystem) asynchronously. To achieve this, I'll use condition variables. Suppose the FileSystem is an interface like: class FileSystem { ...
5
votes
2answers
1k views

Java threads waiting to lock object that isn't (visibly) locked

Normally when I ask for a thread dump, the symptoms of a poorly performing system are easily explained; i.e. normally I would be able to see that a number of threads are clearly waiting on a monitor ...
7
votes
1answer
651 views

What important difference exists between Monitor.TryEnter(object) And Monitor.TryEnter(object, ref bool)?

It seems that these code snippets ought to behave identically: 1: Monitor.TryEnter(object) if (Monitor.TryEnter(lockObject)) { try { DoSomething(); } finally { ...
1
vote
2answers
793 views

How to monitor memory for java thread stacks

While running a JEE application on a 32 bit jvm on Solaris x86 I get an OutOfMemoryError:Cant create native thread (or something like that). This is because the jvm does not have enough memory for the ...
0
votes
2answers
728 views

Can a thread call wait() on two locks at once in Java (6)

I've just been messing around with threads in Java to get my head around them (it seems like the best way to do so) and now understand what's going on with synchronize, wait() and notify(). I'm ...
1
vote
1answer
487 views

Does this use of Monitor.Wait/Pulse have a race condition?

I have a simple producer/consumer scenario, where there is only ever a single item being produced/consumed. Also, the producer waits for the worker thread to finish before continuing. I realize that ...
4
votes
2answers
980 views

How can I replace this semaphore with a monitor?

In previous question of mine, someone had meantioned that using Semaphores were expensive in C# compared to using a monitor. So I ask this, how can I replace the semaphore in this code with a monitor? ...
2
votes
4answers
1k views

Synchronization Exception

I have two threads, one thread processes a queue and the other thread adds stuff into the queue. I want to put the queue processing thread to sleep when its finished processing the queue I want to ...
18
votes
3answers
1k views

Does Monitor.Wait ensure that fields are re-read?

It is generally accepted (I believe!) that a lock will force any values from fields to be reloaded (essentially acting as a memory-barrier or fence - my terminology in this area gets a bit loose, I'm ...
1
vote
0answers
297 views

Do VS2010's new “thread monitor/visualizer” features support CLR 2.0?

In .NET Rocks episode #525, they talk about monitors/visualizers new to VS2010 that help you understand what your multi-threaded software is actually doing at runtime (where it's locking, etc). Does ...
2
votes
2answers
231 views

What object should a Monitor wait on?

When using Monitor.Wait(object obj) what should one use for the obj? In this article I'm reading on multithreading in .NET the author instantiates a new Object() to be used only as a monitor lock. Is ...

1 2