http://bugs.winehq.org/show_bug.cgi?id=5657
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://community.eveonline.
| |com/support/download/
CC| |focht(a)gmx.net
Component|-unknown |ntdll
Version|unspecified |0.9.17.
Summary|EVE Online reports VM Size |EVE Online reports VM Size
|as 0 while on Windows it |as 0 while on Windows it
|reports the memory usage |reports the memory usage
| |(NtQueryInformationProcess
| |ProcessVmCounters info
| |class: actual value for
| |'PagefileUsage' required)
--- Comment #13 from Anastasius Focht <focht(a)gmx.net> 2013-10-27 16:02:50 CDT ---
Hello folks,
is seems the culprit is NtQueryInformationProcess -> ProcessVmCounters not
returning useful information.
There are some tools to reverse EVE Online client code (compiled stackless
python and encrypted).
You need:
http://python.org/ftp/python/2.7.5/python-2.7.5.msi (Python for win32)
https://github.com/wibiti/evedec (decrypts Eve Online python files and passes
them to uncompyle2 to decompile)
https://github.com/wibiti/uncompyle2 (Python 2.7 byte-code decompiler, written
in Python 2.7)
Unfortunately 'evedec' makes use of parallel processing lib, requiring pipe
message mode (bug 17195 and bug 17273) so you have to work around with
unofficial patchset(s) floating around or rewriting the tool to use single
processing mode (without Queue).
Decompiling eve-8.32.622857 client and looking for code that updates the memory
stat page gives a hit here:
carbon/client/script/util/monitor.py:
--- snip ---
...
def UpdateUI(self):
wnd = self.GetWnd()
if not wnd or wnd.destroyed:
return
hd, li = blue.pyos.ProbeStuff()
info = Row(list(hd), li)
virtualMem = info.pagefileUsage / 1024
if self.lastVM is None:
self.lastVM = virtualMem
delta = virtualMem - self.lastVM
self.totalVMDelta += delta
self.lastVM = virtualMem
delta = delta or self.lastVMDelta
self.lastVMDelta = delta
dc = ['<color=0xff00ff00>', '<color=0xffff0000>'][delta > 0]
tdc = ['<color=0xff00ff00>', '<color=0xffff0000>'][self.totalVMDelta >
0]
try:
dev = trinity.device
iml = ''
if blue.logInMemory.isActive:
iml = 'In-memory logging <color=0xff00ff00>active</color> (%s /
%s)' % (LOGTYPE_MAPPING.get(blue.logInMemory.threshold, ('Unknown', ''))[0],
blue.logInMemory.capacity)
fps = 'Fps: %.1f - %s' % (blue.os.fps, iml)
if wnd.sr.fpsText.text != fps:
wnd.sr.fpsText.text = fps
vm = 'VM Size/D/TD: %sK / %s%sK<color=0xffffffff> /
%s%sK<color=0xffb0b0b0> - totalVidMem: %sM' % (util.FmtAmt(virtualMem),
dc,
util.FmtAmt(delta),
tdc,
util.FmtAmt(self.totalVMDelta),
self.totalVidMem)
if wnd.sr.vmText.text != vm:
wnd.sr.vmText.text = vm
inUse = util.FmtAmt(blue.motherLode.memUsage / 1024)
total = util.FmtAmt(blue.motherLode.maxMemUsage / 1024)
num = blue.motherLode.size()
vm = 'Resource Cache Usage: %sK / %sK - %s objects' % (inUse,
total, num)
if wnd.sr.cacheText.text != vm:
wnd.sr.cacheText.text = vm
spaceMgr = sm.StartService('space')
mo = 'Lazy Queue: %s' % getattr(spaceMgr, 'lazyLoadQueueCount', 0)
if session.role & service.ROLEMASK_ELEVATEDPLAYER:
mo += ' - Preload Queue: %s' % getattr(spaceMgr,
'preloadQueueCount', 22)
if wnd.sr.queueText.text != mo:
wnd.sr.queueText.text = mo
except Exception as e:
print 'e', e
self.uitimer = None
sys.exc_clear()
...
--- snip ---
The value in question is 'info.pagefileUsage' (the others are just interval
deltas).
carbon/common/lib/win32.py:
--- snip ---
...
class PROCESS_MEMORY_COUNTERS_EX(Structure):
_fields_ = [('cb', DWORD),
('PageFaultCount', DWORD),
('PeakWorkingSetSize', SIZE_T),
('WorkingSetSize', SIZE_T),
('QuotaPeakPagedPoolUsage', SIZE_T),
('QuotaPagedPoolUsage', SIZE_T),
('QuotaPeakNonPagedPoolUsage', SIZE_T),
('QuotaNonPagedPoolUsage', SIZE_T),
('PagefileUsage', SIZE_T),
('PeakPagefileUsage', SIZE_T),
('PrivateUsage', SIZE_T)]
...
def GetProcessMemoryInfo():
f = windll.Kernel32.GetCurrentProcess
f.retval = HANDLE
h = f()
counters = PROCESS_MEMORY_COUNTERS_EX()
windll.Psapi.GetProcessMemoryInfo(HANDLE(h), byref(counters),
sizeof(counters))
return StructToKeyval(counters)
...
--- snip ---
Other code making use of that value:
carbon/common/script/net/ExceptionWrapperGPCS.py:
--- snip ---
ram = blue.win32.GetProcessMemoryInfo()['PagefileUsage'] / 1024 / 1024
cpuLoad = self.machoNet.GetCPULoad()
m = blue.win32.GlobalMemoryStatus()
memLeft = m['AvailPhys'] / 1024 / 1024
txt = 'System Information: '
txt += 'Total CPU load: %s%%' % int(cpuLoad)
txt += ' | Process memory in use: %s MB' % ram
txt += ' | Physical memory left: %s MB\n' % memLeft
--- snip ---
Psapi.GetProcessMemoryInfo -> kernel32.K32GetProcessMemoryInfo ->
NtQueryInformationProcess(process, ProcessVmCounters, ...)
I found the following articles useful how to estimate/substitute some values:
http://stackoverflow.com/questions/372484/how-do-i-programmatically-check-m…http://nadeausoftware.com/articles/2012/07/c_c_tip_how_get_process_resident…http://locklessinc.com/articles/memory_usage/
As already mentioned, only 'PagefileUsage' is actually required for EVE.
The best substitute for 'PagefileUsage' might be 'VmSize' from either
'/proc/<pid>/stat' (VmSize) or '/proc/<pid>/statm' (VmSize*page_size).
I added a small Linux implementation to ProcessVmCounters getter to fill
'pvmi.PagefileUsage' member with current VmSize and it was enough to have EVE
client display proper memory usage (current + deltas).
$ wine --version
wine-1.7.5-100-g3ab406d
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29365
Bug #: 29365
Summary: Internet Explorer 8 fails to submit a URL to
VirusTotal for analysis
Product: Wine
Version: 1.3.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Classification: Unclassified
Created attachment 38003
--> http://bugs.winehq.org/attachment.cgi?id=38003
Terminal output
VirusTotal can automatically check a submitted URL with several safety checking
utilities, but it's not possible to submit one using IE8 with Wine. It gets
stuck at "please wait while submitting the URL provided." winetricks msxml3
works around it.
Steps to reproduce:
1. winetricks ie8
2. Navigate to http://www.virustotal.com
3. Click on the "submit a URL" tab
4. Type some valid URL in the text input field and click submit URL
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7520
Sagawa <sagawa.aki+winebugs(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |sagawa.aki+winebugs(a)gmail.c
| |om
--- Comment #29 from Sagawa <sagawa.aki+winebugs(a)gmail.com> 2013-10-25 22:19:38 CDT ---
Thanks. Above my patch was committed for 1.7.5 release.
This bug is still open. Because we don't synthesize bold/italic bitmap font
yet.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13699
Summary: Wine doesnt show embedded web browser interface on
Clarion applications
Product: Wine
Version: 1.0-rc3
Platform: PC
URL: http://nakkel.pp.fi/clarionwine/plop.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jouni.karlsson(a)vektori.com
Created an attachment (id=13690)
--> (http://bugs.winehq.org/attachment.cgi?id=13690)
Console messages when running application
Embedded web browser OCX interfaces in applications built with Clarion wont
work under Wine. Shows only blank form instead.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17929
Summary: Crash when creating a DC
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: damian.dixon(a)gmail.com
Created an attachment (id=20262)
--> (http://bugs.winehq.org/attachment.cgi?id=20262)
backtrace.txt
Crash when creating a DC.
This occurs when using a console application and creating a DC.
This approach works on Windows XP and Vista (not tried other versions).
I use this approach for testing 2D graphic drawing in an automated fashion.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=34502
Bug #: 34502
Summary: __unDName doesn't use flags
UNDNAME_NO_LEADING_UNDERSCORES and
UNDNAME_NO_MS_KEYWORDS for "__ptr64"
Product: Wine
Version: 1.7.1
Platform: x86
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: info(a)vmpsoft.com
Classification: Unclassified
Here is my sources:
static BOOL get_modified_type(struct datatype_t *ct, struct parsed_symbol* sym,
struct array *pmt_ref, char modif, BOOL in_args)
{
const char* modifier;
const char* str_modif;
const char* ptr_modif = "";
if (*sym->current == 'E')
{
sym->current++;
if (!(sym->flags & UNDNAME_NO_MS_KEYWORDS)) {
ptr_modif = "__ptr64";
if (sym->flags & UNDNAME_NO_LEADING_UNDERSCORES)
ptr_modif += 2;
ptr_modif = str_printf(sym, " %s", ptr_modif);
}
}
...
Please check it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=34503
Bug #: 34503
Summary: __unDName doesn't support flag UNDNAME_NO_THISTYPE
Product: Wine
Version: 1.7.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: info(a)vmpsoft.com
Classification: Unclassified
Here is my version:
static BOOL handle_method(struct parsed_symbol* sym, BOOL cast_op)
{
...
const char *ptr_modif;
/* Implicit 'this' pointer */
/* If there is an implicit this pointer, const modifier follows */
if (!get_modifier(sym, &modifier, &ptr_modif)) goto done;
if (sym->flags & UNDNAME_NO_THISTYPE) modifier = NULL;
else if (modifier || ptr_modif) modifier = str_printf(sym, "%s %s",
modifier, ptr_modif);
}
Please check it
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=34432
Bug #: 34432
Summary: installer of iTudou needs atl90
Product: Wine
Version: 1.7.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: atl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: litimetal(a)gmail.com
Classification: Unclassified
Created attachment 45840
--> http://bugs.winehq.org/attachment.cgi?id=45840
terminal_output.txt
0. download it from
http://download.tudou.com/itudou/download/iTudou_Setup_3.7.0.8306_with_feis…
$ sha1sum iTudou_Setup_3.7.0.8306_with_feisu.exe
61c943e1bb45abd17937c69cf82ce97257ba3d7
1. install it
--snip--
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.VC90.ATL" (9.0.21022.8)
err:module:import_dll Library ATL90.DLL (which is needed by L"C:\\Program
Files\\Tudou\\iTudou\\itdAgent.dll") not found
--snip--
winetricks -q vcrun2008 is a workaround
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29784
Bug #: 29784
Summary: Spotify collapse at starting
Product: Wine
Version: 1.3.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: forumcash(a)gmail.com
Classification: Unclassified
Created attachment 38685
--> http://bugs.winehq.org/attachment.cgi?id=38685
pic1
I don't know how to start fixing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26900
Summary: GetTabbedTextExtent() returns non-zero value when
nCount == 0
Product: Wine
Version: 1.3.18
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tim(a)hentenaar.com
Created an attachment (id=34298)
--> (http://bugs.winehq.org/attachment.cgi?id=34298)
Patch to fix the issue
GetTabbedTextExtent() in wine is returning a non-zero value when 0 is passed in
for nCount. Under Windows XP, logically zero is returned in this case.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.