0
votes
1answer
30 views
how my cocoa application can track streaming-audio activity
I have to develop a application to log online streaming information like opened player(iTunes,Quicktime),running track, total running time of particular track.
0
votes
2answers
69 views
Monitor USB traffic
I want to view all traffic going out the USB, with the potential to block data transactions to/from the USB based on content policy. How would this be done? Any way to achieve this …
2
votes
3answers
128 views
How can I Monitor cpu usage per thread of a java application in a linux multiprocessor environment?
Hello,
I'm running a multithreaded java app in Linux RedHat 5.3 on a machine that has 8 cores (2 quad-core cpu's).
I want to monitor the cpu usage of each thread, preferably rela …
2
votes
5answers
133 views
C# Multithreading - Telling a waiting process that the first process has finished using the locked code?
I understand that when developing multithreaded applications you must synchronize access to shared memory using either, for instance, a monitor or a lock.
QUESTION
How do you tel …
1
vote
3answers
91 views
Multi Threading locks and monitor class not working
I have a file that is read and written to. I need to make sure when its been written to, nobody else will try to write to it.
I put a lock on the whole function which allows to ei …
2
votes
4answers
111 views
Programmatic resource monitoring per process in Linux
Hi,
I want to know if there is an efficient solution to monitor a process resource consumption (cpu, memory, network bandwidth) in Linux. I want to write a daemon in C++ that does …
1
vote
3answers
166 views
C# producer/consumer
hi, 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 w …
34
votes
46answers
4k views
What’s your ideal multiple-monitor setup for programming?
Jeff Atwood is often expounding the benefits of triple monitor setups for developers, and I have to say I agree with him. However, we are about to take on a good number of new dev …
1
vote
5answers
62 views
Monitoring Java from within Java
I want to write a simple visualization of a Java program by displaying the program's method calls as branches of a tree. This could be done quite simply by having the program itsel …
0
votes
0answers
25 views
How can i connect to remote server for CPU process time monitoring ?
I want to connect to remote server to monitor the cpu process time when i run the stress test.
But it always failed, what can i do to successfully connect to remote server ?
0
votes
1answer
36 views
System.ArgumentNullException in System.Threading.Monitor.Enter
I've got a code like this:
Some of our clients receiving "System.ArgumentNullException in System.Threading.Monitor.Enter" in the following code block:
Public Class CheckStuff
…
1
vote
6answers
230 views
Is the recent trend toward widescreen (16:9) computer monitors a plus or minus for programmers?
It's almost gotten to the point where you can't buy a conventional (4:3) monitor anymore. Pretty much everything is widescreen. This is fine for watching movies or TV, but is it go …
2
votes
2answers
219 views
How to set multiple desktop backgrounds (dual monitor)
I have a code snippet to set a single image across both monitors but I recently got a second monitor for my laptop and I wanted to modify my code to account for setting a diffrent …
1
vote
3answers
89 views
Find Number and resolution to all monitors
How would one poll windows to see what monitors are attached and what resolution they are running at?
1
vote
4answers
77 views
How do I create a monitor for a specific directory?
Using Java over Windows Vista, I'm trying to create a kind of a monitor for a directory, so every time this directory is modified (new, renamed, updated or deleted files) a process …
