http://bugs.winehq.org/show_bug.cgi?id=7560
------- Additional Comments From focht(a)gmx.net 2007-16-03 05:30 -------
Hello,
you can reproduce this with single threaded apps too - just show the "threads"
window.
Looking at the fixme you might be out of luck.
--- snip ---
dlls/ntdll/thread.c:NtQueryInformationThread( ThreadTimes)
...
/* We call times(2) for kernel time or user time */
/* We can only (portably) do this for the current thread */
if (handle == GetCurrentThread())
{
struct tms time_buf;
long clocks_per_sec = sysconf(_SC_CLK_TCK);
times(&time_buf);
kusrt.KernelTime.QuadPart = (ULONGLONG)time_buf.tms_stime *
10000000 / clocks_per_sec;
kusrt.UserTime.QuadPart = (ULONGLONG)time_buf.tms_utime *
10000000 / clocks_per_sec;
}
else
{
kusrt.KernelTime.QuadPart = 0;
kusrt.UserTime.QuadPart = 0;
FIXME("Cannot get kerneltime or usertime of other threads\n");
}
--- snip ---
times(2) and getrusage(2) wont do any good here for child threads.
One might read out /proc table info for individual threads but that query is
very costly and the info returned is not accurate at all.
There is some lengthy discussion regarding kernel/user time of thread on the
windows side too:
http://blog.kalmbachnet.de/?postid=28http://groups.google.de/group/microsoft.public.win32.programmer.kernel/brow…
In short: forget these values.
Ollydbg queries the info by calling GetThreadTimes() (which in turn calls
NtQueryInformationThread( ThreadTimes)).
If the flooding bothers you, replace the FIXME() with WARN() or remove it
completely.
I assume there wont be a fix soon.
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7761
Summary: Rome total war does not install any files
Product: Wine
Version: CVS
Platform: Other
URL: http://www.gamershell.com/download_6784.shtml
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeremielapuree(a)yahoo.fr
Like said in the summary, any file is installed when installing this game.
But, the install process works fine until the ends: no crash.
Except, it does not create the files.
I attached a log.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7760
Summary: p2p tv doesn't work
Product: Wine
Version: 0.9.32.
Platform: PC
URL: http://p2ptv.orgfree.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: feoe(a)campus.upb.de
strange behaviour
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7476
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2007-16-03 05:05 -------
* Brian wrote:
| Also, I've never done a "patch" to my Wine before, I suppose I'd use it in
| the GIT tree that I have. Can you point me to a Howto on adding a patch?
Brian, basically you need to (1) download the diff-patch or email-patch, (2)
make a separate branch from a "master" and then (3) apply the patch here.
(1) I would recommend to copy the text starting at those lines
From 98813ba4d5892cb30272842d15c5340731310b99 Mon Sep 17 00:00:00 2001
From: Stefan Doesinger <stefan at codeweavers.com>
and ending by those ones:
--
1.4.4.3
Then save the text to event_queries.diff
(2) $ git branch test_event_queries
$ git checkout test_event_queries
(3) $ git-am -3 event_queries.diff
And then compile Wine as usual.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6829
oberon(a)wildwein.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Priority|P3 |P2
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6829
oberon(a)wildwein.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Priority|P2 |P3
Version|0.9.26. |0.9.30.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7735
------- Additional Comments From m.goemmel(a)compulab.de 2007-16-03 04:51 -------
I did some more research on this, but without much success so far... if
anybody would take me a trace where the problem probably is, I could try to do
further research on this.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7735
------- Additional Comments From m.goemmel(a)compulab.de 2007-16-03 04:49 -------
This message box is hidden behind the splash screen when running without a
separate desktop. Using a separate desktop in winecfg will showup the message
box in front of the splash screen.
Markus
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.