http://bugs.winehq.org/show_bug.cgi?id=7216
--- Comment #13 from Dan Kegel <dank(a)kegel.com> 2008-07-20 00:02:27 ---
The commands
strace -f -o strace.log wine picasa2.exe
egrep 'inotify|open.*My Documents/" strace.log
seem to show that an inotify watch is only added for the top-level directory;
8750 open("/home/demouser/.wine/dosdevices/c:/windows/profiles/demouser/My
Documents/", O_RDONLY|O_NONBLOCK|O_LARGEFILE) = 98
...
8750 inotify_init() = 113
8750 inotify_add_watch(113, "/proc/self/fd/98",
IN_MODIFY|IN_ATTRIB|IN_MOVED_FROM|IN_MOVED_TO|IN_CREATE|IN_DELETE|IN_DELETE_SELF)
= 1
8750 inotify_rm_watch(113, 1) = 0
Since it contained multiple subdirectories, wine should
have converted the first ReadDirectoryChanges() call into
a series of inotify_add_watch() calls, one for each subdirectory.
I looked at server/change.c, and while it talks about recursive
watches, I don't see read_directory_changes actually doing
a tree walk of subdirectories...?
--
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=7216
--- Comment #12 from Dan Kegel <dank(a)kegel.com> 2008-07-19 22:26:28 ---
>From the logs, Picasa seems to be doing
003c:Call KERNEL32.CreateFileW(0032a510 L"C:\\windows\\profiles\\demouser\\My
Documents\\",00000001,00000007,00000000,00000003,42000000,00000000)
ret=0070c7da
003c:Ret KERNEL32.CreateFileW() retval=000000d8 ret=0070c7da
003c:Call KERNEL32.CreateEventA(00000000,00000000,00000000,00bd9dc4
"CChangeLoggerd8") ret=005461fa
003c:Ret KERNEL32.CreateEventA() retval=000000dc ret=005461fa
...
0027:Call
KERNEL32.ReadDirectoryChangesW(000000d8,7d5179c8,00010000,00000001,00000057,00000000,7d5002b:Ret
PE DLL (proc=0x7e67e3a0,module=0x7e660000
once, then the thread that called ReadDirectoryChanges loops forever, doing
0027:Call KERNEL32.GetOverlappedResult(000000d8,7d5179b4,7d5179a4,00000000)
ret=005473ee
0027:Ret KERNEL32.GetOverlappedResult() retval=00000000 ret=00547267
0027:Call KERNEL32.GetLastError() ret=00547285
0027:Ret KERNEL32.GetLastError() retval=000003e4 ret=00547285
0027:Call KERNEL32.WaitForSingleObject(000000dc,0000000a) ret=00547291
...
0027:Ret KERNEL32.WaitForSingleObject() retval=00000102 ret=00547291
0027:Call KERNEL32.QueryPerformanceCounter(7d5178f4) ret=0072ff5e
0027:Ret KERNEL32.QueryPerformanceCounter() retval=00000001 ret=0072ff5e
0027:Call KERNEL32.QueryPerformanceCounter(7d5178f4) ret=0072ff5e
0027:Ret KERNEL32.QueryPerformanceCounter() retval=00000001 ret=0072ff5e
0027:Call KERNEL32.GetCurrentThreadId() ret=005472ce
0027:Ret KERNEL32.GetCurrentThreadId() retval=00000027 ret=005472ce
0027:Call KERNEL32.SetEvent(000000b8) ret=00547312
over and over. For some reason the event passed to ReadDirectoryChanges
is never firing.
I looked at kernel32/tests/change.c, and it seems to try to test
this properly, but it's hard to say if it matches the exact behavior
of picasa. I'll try to whip up a little test app that does.
--
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=8357
rejkekk(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |rejkekk(a)gmail.com
--- Comment #21 from rejkekk(a)gmail.com 2008-07-19 20:44:57 ---
After the patch on the 17th models are gone again, the only models that show
are bracers, weapons, and head gear (some). I am using the modified
d3dx9_30.dll, and everything was working great until that dang patch. Ubuntu
7.10, Wine 1.0 (that is the latest prepackage for my distro (i hate compiling,
i have not had great luck in the past with compiling things). Nvidia card and
drivers, what else, Amd 64 x2, so i was having the problem with models freezing
and did not get a chance to use the suggested fix, not having seen it until i
was looking for a solution to this latest problem. Hope someone can give me a
hand with this.
--
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=7216
--- Comment #11 from Dan Kegel <dank(a)kegel.com> 2008-07-19 18:58:48 ---
Hrm, the test Michael added was for FindFirstChangeNotification;
in my log, Picasa seems to be using ReadDirectoryChanges.
We might want to beef up the tests for that.
--
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=7216
--- Comment #10 from Dan Kegel <dank(a)kegel.com> 2008-07-19 18:44:44 ---
To reproduce:
1. create new linux user
2. put a single large .jpg image in the user's home directory
3. install and start picasa for windows as that user
4. note the large image is properly displayed
5. move the image to a subdirectory
6. note that the image is no longer displayed
--
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=9216
Lars-Philip Kramer <larsphilip(a)gmx.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |larsphilip(a)gmx.de
--- Comment #3 from Lars-Philip Kramer <larsphilip(a)gmx.de> 2008-07-19 17:44:58 ---
I am experiencing the same bug. Is there no way around this message?
--
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=4650
--- Comment #16 from Volker Dirr <wine(a)volker-dirr.de> 2008-07-19 16:44:12 ---
I check it with wine 1.1.1
the program doesn't crash anymore if sound is enabled.
but sadly you can't hear anything.
--
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=14573
Summary: Wine 1.1.1 will only load with black background on all
programs - Cannot see text inside the window.
Product: Wine
Version: 1.1.1
Platform: PC
URL: http://darcy.pastebin.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: darcywickham(a)gmail.com
I am a new user to Linux. I have Kubuntu 8.04 Hardy installed. I am trying to
run ConvertXtoDvd through Wine 1.1.1. The program seems to load up alright, but
all the background which is normally white is now black and I cannot see any of
the text. It seems to be Wine itself because even the configuration screen does
it. I can't use the program because of the black background.
--
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=7597
Alexander Nicolaysen Sørnes <alex(a)thehandofagony.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|-unknown |wintrust
--- Comment #4 from Alexander Nicolaysen Sørnes <alex(a)thehandofagony.com> 2008-07-19 15:05:43 ---
Still happens in Wine 1.1.0
--
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=7930
Alexander Nicolaysen Sørnes <alex(a)thehandofagony.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #7 from Alexander Nicolaysen Sørnes <alex(a)thehandofagony.com> 2008-07-19 15:01:37 ---
Doesn't happen in the demo with Wine 1.1.0.
--
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.