Re: QueryPerformanceFreqency and QueryPerformanceCounter
Quote:
Originally Posted by
1248
What form of polling means in programming?
See http://en.wikipedia.org/wiki/Polling_(computer_science)
Re: QueryPerformanceFreqency and QueryPerformanceCounter
So this code does nothing more tahn pollying with processor counter?
Re: QueryPerformanceFreqency and QueryPerformanceCounter
This code does nothing at all. Well, it obtains performance counter and performance frequency but then doesn't use them for any purpose. :cool:
Re: QueryPerformanceFreqency and QueryPerformanceCounter
Then all lines i added have no outcome so far, My idea was to learn a bit and then try to make a program that finds adresses by pointers in separate processes.
Then it would have delay control and ammount control and it would try to add for example 0.001 in every 500microsec to some adress in another process.
Also it could have button to add 1 more value and save option so all pointers would be stored.
How good skill it would take to make program i describe and how long average person obtains knowledge for that high skill?
Or are similar program already avalible that i describe?
Re: QueryPerformanceFreqency and QueryPerformanceCounter
Could you more clear explain what you mean by "program that finds adresses by pointers in separate processes" and why you think it is possible?
Re: QueryPerformanceFreqency and QueryPerformanceCounter
i ment that if pointers are directing to adresses and their values, then values would be chagned with small increasments and small delay would repeat this process.
Re: QueryPerformanceFreqency and QueryPerformanceCounter
Quote:
Originally Posted by
1248
i ment that if pointers are directing to adresses and their values, then values would be chagned with small increasments and small delay would repeat this process.
I didn't ask you about "delay"
I asked you
Quote:
Originally Posted by
VictorN
Could you more clear explain what you mean by "program that finds adresses by pointers in separate processes" and why you think it is possible?
What did you mean by "separate processes"?
Re: QueryPerformanceFreqency and QueryPerformanceCounter
In addition to what VictorN said ...
Quote:
Originally Posted by
1248
... try to make a program that finds adresses by pointers in separate processes ... and it would try to add for example 0.001 in every 500microsec to some adress in another process ... and save option so all pointers would be stored.
Reading and writing to/from addresses across different processes is very difficult. I would say the skill level is very high.
Mike