1
vote
2answers
115 views

Measure CPU and RAM Usage of Child Process

I have the following process: public void Run() { ProcessStartInfo serverPInfo = new ProcessStartInfo("javaw", "-jar -Xms1024M -Xmx1024M \"C:\\Users\\David\\Documents\\Visual ...
0
votes
0answers
108 views

optimising code in R using mclapply [closed]

I want to understand how to write my R program to most efficiently use the resources on my machine - 8 core, 64gb RAM, 128GB swap RAM - preferably using mclapply function in the parallel package. I'm ...
1
vote
3answers
467 views

How much memory a x86 excutable can use on a 64bit os?

I think that the question sounds clear, but for further explanation: Suppose we have Windows 7 x64 PC with 8GB of RAM installed on it; (64bit OS with 32bit process is my intention) Question 1: how ...
0
votes
1answer
40 views

Android: Why if I create a bitmap that will overwrite the previous during a process the occupied ram increases? How can I avoid it?

I have a big problem. I create a service that update a bitmap programmatically. When a new bitmap is created the previous previous stays in the RAM memory, so after after some time this process ...
2
votes
1answer
248 views

Getting Computer Memory information in Java [closed]

Is there any application for memory testing, preferably written in java (or another programming language) that shows information about computer memory or something for testing it (something like total ...
1
vote
1answer
679 views

how to determine when the device has low memory on Android

My app is a background service running in the foreground. In low memory situations some of my processing threads are being killed without the app being restarted. This is causing very strange ...
2
votes
1answer
1k views

PHP process ram and cpu usage (windows)

I making a webadmin system and I want to monitor the CPU and RAM usage of a process in PHP Can anyone help me?
0
votes
2answers
939 views

How to log the Ram and CPU usage for Linux Processes

How would I track the CPU and Ram usage for a process that may run, stop, and then re-run with a different PID? I am looking to track this information for all processes on a Linux server but the ...
8
votes
4answers
1k views

How to simulate different CPU frequency and limit RAM

Hi I have to build a simulator with C#. This simulator should be able to run a second thread with configureable CPU speed and limited RAM size, e.g. 144MHz and 50 MB. Of course I know that a simulator ...