Tagged Questions

1
vote
5answers
73 views

Windows utility for consuming CPU

I'm looking for a windows utility to consume CPU at a specified percentage so that I can test my app under conditions of restricted processor resources. I googled around and saw a …
1
vote
4answers
96 views

Does a one cycle instruction take one cycle, even if RAM is slow?

Hi! I am using an embedded RISC processor. There is one basic thing I have a problem figuring out. The CPU manual clearly states that the instruction ld r1, [p1] (in C: r1 = *p1) …
1
vote
5answers
1k views

How do I obtain CPU cycle count in Win32?

In Win32, is there any way to get a unique cpu cycle count or something similar that would be uniform for multiple processes/languages/systems/etc. I'm creating some log files, bu …
1
vote
9answers
2k views

How to set cpu load on a RedHat linux box

I have a RHEL box that I need to put under a moderate and variable amount of cpu load (50%-75%). What is the best way to go about this? Is there a program that can do this that I …
0
votes
5answers
304 views

The correct way of waiting for strings to become equal

In a Swing app a method should continue only after user enters a correct answer. The correct answer is stored in a String with user answer being set by a listener to another String …
2
votes
3answers
340 views

Limiting assembly execution number of cpu cycles

I have a project that dynamically loads in unknown assemblies implementing a specified interface. I don't know the contents or purposes of the assembly, other than it implementing …