I'm scanning outside program's memory.
The code looks like that:
while (true)
{
read(x)
if (x changed since last check)
{
x = new value;
.
.
.
}
Thread.Sleep(0);
}
I believe it's a big waste for CPU to keep on reading 1 value all the time. Unfrotunately, I'cant give there a bigger sleep. Is there any possible way to lower CPU usage and keep the functionality of my prog?
Here's the function I'm using to read process memory:
// BOOL ReadProcessMemory(
// HANDLE hProcess, // handle to the process
// LPCVOID lpBaseAddress, // base of memory area
// LPVOID lpBuffer, // data buffer
// SIZE_T nSize, // number of bytes to read
// SIZE_T * lpNumberOfBytesRead // number of bytes read
// );
[DllImport("kernel32.dll")]
public static extern Int32 ReadProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, [In, Out] byte[] buffer, UInt32 size, out IntPtr lpNumberOfBytesRead);
public byte[] ReadProcessMemory(IntPtr MemoryAddress, uint bytesToRead, out int bytesRead)
{
byte[] buffer = new byte[bytesToRead];
IntPtr ptrBytesRead;
ProcessMemoryReaderApi.ReadProcessMemory(m_hProcess, MemoryAddress, buffer, bytesToRead, out ptrBytesRead);
bytesRead = ptrBytesRead.ToInt32();
return buffer;
}

xbeing read? You might be able to multi-thread and use aManualResetEvent– Dave Zych Nov 5 '12 at 18:38readas there could be a way to detect a value changed instead of poling using the library you are using to read the memory. – Scott Chamberlain Nov 5 '12 at 18:58