Monitor is component for Monitoring. It is the act of looking on the processes or systems for performance, supervision and surveillance.
5
votes
4answers
11k views
C# producer/consumer
i've recently come across a producer/consumer pattern c# implementation. it's very simple and (for me at least) very elegant.
it seems to have been devised around 2006, so i was wondering if this ...
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 ...
17
votes
1answer
10k views
CPU temperature monitoring C#
For a programming project I would like to access the temperature readings from my CPU and GPUs. I will be using C#. From various forums I get the impression that there is specific information and ...
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 ...
13
votes
8answers
10k views
How do I get Monitor resolution in Python?
What is the simplest way to get monitor resolution (Preferably in a tuple)?
2
votes
2answers
601 views
How to detect hot plugging of monitor in a win32 application?
I need some kind of event from Windows whenever there is a monitor that's getting plugged into system. Is there any API in Windows to do that. BTW, it is an C++ application
0
votes
3answers
4k views
Win32 code to get EDID in Windows XP/7
I found this page and was unable to get any useful information out of it (it searches the registry for something but never finds it and goes into an infinite loop).
As this question regarding getting ...
17
votes
14answers
4k views
Actual Productivity Gains from Multiple Monitors [closed]
I see a lot of posts from people talking about how they cannot possibly live without two, three or 13 1/2 monitors but does anybody have an actual metrics or statistics which I could use as ...
31
votes
11answers
2k views
How do I convince my boss to buy nice big monitors for the developers? [closed]
What's the best way to convince management that buying nice big monitors for developer workstations is worthwhile?
(Whether big monitors actually are worthwhile is totally irrelevant, I'd like to ...
11
votes
3answers
5k views
Launch an application and send it to second monitor?
Is there any way to start/lunch a program through Process in another screen?
Someone asked that here but there was no answer.
Note: it is not a form in my app, I'm asking about running an external ...
5
votes
2answers
9k views
How do you monitor file access and changes on a file server by user name?
I was asked to find a way to monitor changes (modification, renaming, deletion, moving) of files in specific folders on the company's shared file server (simple windows shared directory). I wrote a ...
2
votes
3answers
1k views
does Monitor.Wait Needs synchronization?
I have developed a generic producer-consumer queue which pulses by Monitor in the following way:
the enqueue :
public void EnqueueTask(T task)
{
_workerQueue.Enqueue(task);
...
12
votes
10answers
10k views
Visual Studio and dual/multiple monitors: how do I get optimized use out of my monitors?
Ultramon is a great program for dual monitors (stretching screen across monitors), but I was wondering if there is any way do to something in Visual Studio like have one tab of code open on one ...
8
votes
4answers
4k views
Re-assign/override hotkey (Win + L) to lock windows
Is it possible to re-assign the Win + L hotkey to another executable/shortcut?
Use-case - I would like to switch off the monitor of my laptop as soon as it is locked. I know of a executable which can ...
5
votes
7answers
6k views
How to obtain the correct physical size of the monitor?
How can I get the size of the display in centimeters or inches?
This code does not always works correctly:
HDC hdc = CreateDC(_T("DISPLAY"),dd.DeviceName,NULL,NULL);
int width = GetDeviceCaps(hdc, ...
1
vote
1answer
214 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 ...
10
votes
3answers
642 views
How heavy are Java Monitors?
Say I have an array of thousands of objects, and a small number of threads that might access each of the objects. I want to protect the access to one of the objects methods. Easiest way would be to ...
5
votes
4answers
4k views
Condition variables in C#
Are condition variables & monitors used in C#?
Can someone give me an example?
2
votes
2answers
1k views
Restart ASP.NET application when folder contents change
I'm writing a web application that will have "plugins". The plugins will be .DLL files which will export their functionality through predefined interfaces 'n stuff. All the .DLL files are in a folder ...
6
votes
3answers
308 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 ...
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 ...
2
votes
1answer
4k views
Monitor battery charge with Win32 API
I'm trying to write a small app that monitors how much power is left in a notebook battery and I'd like to know which Win32 function I could use to accomplish that.
1
vote
2answers
1k views
C# Identfiy screens number?
How to have a function in C# to run the window identification, which will show the numbers 1, 2, ... on the screen same way as we do it by right click on the screen (properties) then we go to Screen ...
1
vote
5answers
3k views
Windows: How to change monitor's backlight brightness
Ever since I've been using an external monitor with my laptop, when I need to change the backlight brightness I have to press the monitor's buttons to navigate through its menu and adjust the ...
0
votes
1answer
457 views
How to get the original full file path been printed by Spooler API
I want to monitor the system scope's printing jobs through a standalone program using the Windows Spooler API, but only the print job's name can be fetched. How do I get the original file with full ...
0
votes
2answers
730 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 ...
22
votes
6answers
3k views
Can anyone explain thread monitors and wait?
Someone at work just asked for the reasoning behind having to wrap a wait inside a synchronized.
Honestly I can't see the reasoning. I understand what the javadocs say--that the thread needs to be ...
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 ...
6
votes
1answer
1k views
When to use lock vs MemoryBarrier in .NET
In .NET the lock keyword is syntactic sugar around Monitor.Enter and Monitor.Exit, so you could say that this code
lock(locker)
{
// Do something
}
is the same as
Monitor.Enter(locker);
try
{
...
6
votes
1answer
5k views
Get physical screen size in Qt
I'km working in Qt, i need help to get the physical size of the screen (monitor),
In Qt one can get a QDesktopWidget from QApplication, I mean:
QDesktopWidget *mydesk = ...
5
votes
3answers
10k views
Monitoring application calls to DLL
In short: I want to monitor selected calls from an application to a DLL.
We have an old VB6 application for which we lost the source code (the company wasn't using source control back then..). This ...
4
votes
3answers
1k views
How to continuously monitor rhythmbox for track change using python
I want to monitor the change of track in Rhythmbox using python. I want to continuously check for change of track and execute a set of functions if the track is changed. I have written a piece of code ...
3
votes
3answers
4k views
Monitor Process in Python?
I think this is a pretty basic question, but here it is anyway.
I need to write a python script that checks to make sure a process, say notepad.exe, is running. If the process is running, do nothing. ...
8
votes
3answers
4k views
How to get the CPU Temperature info from Bios using c#?
How to get the CPU Temperature info from Bios using c#
I gave a try to the code in http://stackoverflow.com/questions/2923984/cpu-temperature-monitoring-c
But no luck. 'enumerator.Current' threw an ...
5
votes
4answers
838 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 ...
5
votes
2answers
1k views
Monitor Multiple Rails Applications
Are there any tools that I can run on my server to monitor multiple rails applications?
I need to monitor the number of requests each application receives, how much memory each application is using, ...
4
votes
1answer
1k views
How to know child process status and resource usage on windows?
I want to write a program, which will launch a child process. The child process may be windows mode or console mode program.
I want to monitor the child process status and resource usage. e.g. I want ...
2
votes
2answers
2k views
How to constanly monitor LogCat file?
I need to somehow monitor the LogCat log, meaning that while my service is running I need to read the LogCat for new entries.
At this moment I know only how to retrieve once the Log:
Process ...
1
vote
1answer
687 views
Looking for a reliable mapping of Forms.Screen.DeviceName to Monitor EDID info
I'm developing an application which will display information derived from the EDID blocks (monitor model, ID, S/N, etc.) on a dialog on the corresponding monitor.
This code works for finding the EDID ...
10
votes
13answers
5k views
Advice on buying a LCD monitor for development [closed]
I still use a 19" CRT monitor for my development (both at home and work), but now I'm looking for a wide-screen LCD monitor as my next purchase.
As much as I look into it, I can't really find one ...
6
votes
1answer
1k views
Detecting if the monitor is powered off
I have a kiosk type application and I need to be notified if the LCD TV is powered off so I can chastise someone. I'm running Ubuntu 10.10 with nVidia video cards and the nVidia drivers. The TVs are ...
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 ...
4
votes
1answer
1k views
How to turn off particular monitor with .NET?
OK, I know there are quite a few posts on this topic. However, none of them provide the solution to my issue: I don't want just to turn off my monitor(s), I wish my code to turn off a specific ...
3
votes
3answers
6k views
Get PC's Monitor Information Using .NET / WMI
Is there anyway using WMI/.Net to grab monitor information such as Manufacturer, Serial Number, Monitor Size etc.?
Using a script is an option as well, or can I query the registry directly to get ...
2
votes
2answers
353 views
PHP monitor for all my apps' and sites' errors, logs, etc
What I'd like
I'd like to have an internal web app in PHP where I can look at all my errors, logs, etc., from all my apps and sites.
Let me paint a picture to explain: I'd like to go to something ...
2
votes
1answer
2k views
Getting monitor size in python
I am using python and want to create a fullscreen window. I know about the pygame.FULLSCREEN flag but when I use that there's areas of black around the screen. Is there any way to get the monitor size ...
1
vote
16answers
3k views
What is your recommended monitor resolution?
I just got a new monitor to replace one of the ones I have at work. I went from this*:
1: 1600x1280
2: 1400x768
to this**:
1: 1768x1340
2: 1600x1280 (was formerly 1)
This was a pretty big jump ...
0
votes
4answers
342 views
Qt or PyQt - check when file is used by another process. Wait until finish copy
Good morning,
What is the best strategy for check when a big file o big directory has finished to copy?
I want wait until a file has finish fully to copy. Is there a code example in q
I'm working on ...
0
votes
2answers
326 views
Detect changes in directory
I need to monitor a folder and its subdirectories for any file manipulations (add/remove/rename). I've read about FileSystemWatcher but I'd like to monitor changes between each time the program is run ...
3
votes
2answers
288 views
NodeJS and Forever (monitoring and restarting app)
I'm trying to setup forever and NodeJS to monitor&restart my app and also keep it running when exits. Currently I have this:
var forever = require("forever-monitor");
var child = ...
