5
votes
8answers
2k views
how to write super fast file streaming code in C# ?
I have to split huge file into many smaller files. each of the destination file is defined by offset and length as number of bytes. I'm using the following code:
private void copy(string srcFile, …
5
votes
6answers
426 views
Too Little CPU Utilization in Java
Hey stackoverflow community!
I'm having an issue where a highly involved algorithmic program is using TOO LITTLE cpu utilization: somewhere between 3 and 4%. It is taking very long to return …
1
vote
2answers
54 views
How to compare application memory usage on Linux and Windows?
I'm trying to compare memory utilization of an application running under Linux and Windows
on the same PC. Is there a "quick and dirty" way to normalize readings from Windows task manager and Linux …
1
vote
1answer
181 views
How to get CPU Utilization metrics in Windows Xp ?
Hi All,
I need to get CPU utilization metrics of all the process.
Operating system = Windows Xp
programming language = Java
requirements = need to take samples every few seconds indefinitely, …
1
vote
2answers
216 views
CPU Utiliztion per process in Win32 API
I am doing a project on a centralized LAN management system. I need to know how many CPU cycles is each process of a remote PC consuming(as in a Task Manager )so that the network admin can close few …
1
vote
2answers
804 views
How to get thread CPU utilization metrics in Redhat Linux
Dear All,
I need to get CPU utilization metrics for all the threads in a process.
Operating system = Redhat linux
programming language = C++ using POSIX
requirements = need to take samples every …
1
vote
5answers
453 views
Proper disposal of SharePoint objects?
I hope there's a SharePoint expert here on SO who can help with this.
Here's the problem. My SharePoint logs contain this line, several times:
An SPRequest object was not disposed before the end of …
0
votes
1answer
35 views
Processor Utilization by threads spawned by a program
I have a java program which spawns multiple threads say, 10-20 threads. This program is scheduled to be run on a machine that has 32 processors.
I am keen to know if all the processors' power would …
0
votes
2answers
60 views
How to estimate FPGA utilization for designing a work a like core?
I was considering some older generation FPGA's to interface with a legacy system. So I want a good way of estimating how much space is necessary to replace an ASIC given its transistor count.
Does …
0
votes
2answers
131 views
I got the address of a large managed object in WinDbg, what next?
I created a high memory utilization dump and using !dumpheap -stat and !dumpheap -mt I got the address of two large string generic list of 30 MB each.
I want to know more about these lists. What …
0
votes
4answers
229 views
CPU Utilization of Service DLL?
I need to find out the CPU utilization of a service DLL. I have looked in existing samples and we can find CPU utilization for processes.
I think DLL will be loaded by services.exe. So is it possible …
