http://bugs.winehq.org/show_bug.cgi?id=7299
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|major |normal
Summary|Wine has a networking error |Tribes 2: retrieving e-mail
|when trying to retrieve e- |causes program to hang
|mail in Tribes 2, which |
|freezes the program. |
--
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=5040
------- Additional Comments From damjan.jov(a)gmail.com 2007-31-01 01:52 -------
SimpleDateFormatDemo.java does work when you use the native MSVCRT.DLL, try
using that to install/run MATLAB.
--
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=2953
------- Additional Comments From damjan.jov(a)gmail.com 2007-31-01 01:48 -------
On wine 0.9.30, with Java 1.4.1 and Windows 2000 being emulated, I still get the
truncated class file error.
With the native MSVCRT.DLL, it works.
--
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=7286
------- Additional Comments From michaelhust(a)gmx.de 2007-31-01 01:33 -------
How can I use this patch? Or is this patch only for the wine developers to
integrate this code in a next version?
Greetings
Michael
--
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=7299
Summary: Wine has a networking error when trying to retrieve e-
mail in Tribes 2, which freezes the program.
Product: Wine
Version: 0.9.30.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: digitaltopia(a)gmail.com
Tribes 2 has a built-in e-mail feature. When you sign-in to the game to play
the game on-line, it automatically checks for new e-mail. This can't be
disabled. When it does check for e-mail, the program freezes with the following
error:
fixme:winsock:NtStatusToWSAError Status code c0000024 converted to DOS error code 6
The only work-around I know of is to load the game in Windows and delete any new
e-mails you have, and then load the game in Linux again.
--
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=7286
------- Additional Comments From mk144210(a)bcm.tmc.edu 2007-31-01 00:32 -------
Created an attachment (id=4731)
--> (http://bugs.winehq.org/attachment.cgi?id=4731&action=view)
My proposed patch to close this bug
Here is my proposed patch to ensure that when a thread is being woken up that
nothing that is called from end_wait tries to wake the thread again before it
is finished being woken up. This patch ensures that if an APC immediately
follows a timeout wakeup (or rather as a result of the end_wait function in the
timeout), that it works as currently this is the reason that this bug occurs.
Any comments appreciated.
--
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=7286
------- Additional Comments From mk144210(a)bcm.tmc.edu 2007-31-01 00:14 -------
Here is the deep problem. Now I need to figure out how to solve it:
The problem is that a thread cannot be sent an APC from within an
end_wait for it's timeout. The reason is that the end_wait function,
while it is destroying objects, does not in any way remove these objects
from its own wait queue (which took me a while to figure out, it removes
each wait object's "entry" from the "entries", but in the entries at the
end of the thread_wait structure all the objects stay put and the count
does too until the very end of the function). When the first end_wait is
called as a timeout, it starts freeing objects that I guess the thread
was waiting for, and the directory object, in its removal function,
sends APCs to its change queue (still not really sure what this is, but
maybe processes that are waiting for it to change? Seems kind of a
duplicate of the initial wait in this case though), which ends up seeing
no other APCs queued for that thread, and la ti da let's wake it up.
end_wait is called, sees that it has a count of 1 to free up, and again
calls the free function for that one object.
--
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=6323
------- Additional Comments From dmitry(a)codeweavers.com 2007-30-01 22:26 -------
Thanks. Then your patch looks reasonable. Please send it to wine-patches
with this quote of the man page.
--
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=6323
------- Additional Comments From deankus(a)gmail.com 2007-30-01 22:10 -------
>From the XmbLookupString man page:
Note
(R)To ensure proper input processing, it is essential that the
client pass only KeyPress events to XmbLookupString, XwcLookup-
String and Xutf8LookupString. Their behavior when a client
passes a KeyRelease event is undefined.
--
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=6323
------- Additional Comments From dmitry(a)codeweavers.com 2007-30-01 21:58 -------
That's something new to me that calling XmbLookupString with KeyRelease events
has undefined behavior. Is there any doc mentioning that? Does xev show that
as well?
--
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.