http://bugs.winehq.org/show_bug.cgi?id=5657
--- Comment #14 from Anastasius Focht focht@gmx.net 2013-10-27 16:10:30 CDT --- Created attachment 46423 --> http://bugs.winehq.org/attachment.cgi?id=46423 python snippet to query for process memory information
Hello folks,
attached is a small python snippet which queries for process memory information - similar to EVE Online client.
I copied it from here: http://stackoverflow.com/questions/11669335/how-to-get-privateusage-memory-v...
Prerequisite: WINEPREFIX with Python 2.7 for win32
--- snip --- $ wine "c:\Python27\python.exe" memory_info.py ... {'PageFaultCount': 0L, 'PagefileUsage': 0L, 'PeakPagefileUsage': 0L, 'PeakWorkingSetSize': 0L, 'PrivateUsage': 0L, 'QuotaNonPagedPoolUsage': 0L, 'QuotaPagedPoolUsage': 0L, 'QuotaPeakNonPagedPoolUsage': 0L, 'QuotaPeakPagedPoolUsage': 0L, 'WorkingSetSize': 0L, 'cb': 40L} ... --- snip ---
Regards