http://bugs.winehq.org/show_bug.cgi?id=4230
--- Comment #8 from Ted Hansen <tedhansen(a)sasktel.net> 2008-02-03 22:01:26 ---
It appears this bug has been corrected.
Fresh install of Turbocad on 0.9.53 the dimensioning problem appears to be
fixed with the built-in mscvrt.dll. A new (minor) bug appeared which is that
the minimze/maximize/close button icons are just "x". The buttons work
properly, however.
Upgrading to 0.9.54 from wine HQ .deb repository corrected this also.
Still leaving this bug unconfirmed, will do a complete review of all functions
and update the app Db sometime this week.
If all is well we can resolve this bug then.
--
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=3546
--- Comment #8 from EA Durbin <ead1234(a)hotmail.com> 2008-02-03 20:56:45 ---
component should be shdocvw
--
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=6163
EA Durbin <ead1234(a)hotmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #8 from EA Durbin <ead1234(a)hotmail.com> 2008-02-03 20:38:49 ---
closing dup
--
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=3546
EA Durbin <ead1234(a)hotmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ead1234(a)hotmail.com
--- Comment #7 from EA Durbin <ead1234(a)hotmail.com> 2008-02-03 20:38:30 ---
*** Bug 6163 has been marked as a duplicate of this bug. ***
--
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=6163
EA Durbin <ead1234(a)hotmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
--- Comment #7 from EA Durbin <ead1234(a)hotmail.com> 2008-02-03 20:38:30 ---
duplicate of bug 3546
*** This bug has been marked as a duplicate of bug 3546 ***
--
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=8770
--- Comment #60 from Martin Dengler <martin(a)martindengler.com> 2008-02-03 18:18:08 ---
Hmmm...heisenbug...played six battle.net games in a row without a crash. Odd.
--
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=8785
--- Comment #15 from Digitaltopia <digitaltopia(a)gmail.com> 2008-02-03 17:43:34 ---
No, I wasn't using Compiz or Beryl or any sort of desktop effects.
--
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=3817
ebfe <knabberknusperhaus(a)yahoo.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |knabberknusperhaus(a)yahoo.de
--- Comment #25 from ebfe <knabberknusperhaus(a)yahoo.de> 2008-02-03 16:34:26 ---
i've taken a look at this and imho there are several things important about
this whole thing:
- the major performance-drawback comes from wine trying to find files in large
directories. I've attached a profiling-graph that shows how 70% of the
cpu-cycles for a single file-lookup are spend in the function
'wine_nt_to_unix_file_name'. different profiling-scenarios reveal similar
results.
- the basic problem is to map a case-insensitive filesystem like NTFS/FAT to a
case-sensitive filesystem like linux vfs. when wine gets a request for
"foo.BAR", it looks for the that filename. when it is not found, wine scrolls
through the entire directory, converting every filename to utf8 and doing a
case-insensitive comparison on that. this is done for every filename-lookup so
in a directory of a thousand files, adding another 100 files leads to 100.000
utf8/case-conversions.
- the hash- and utf8-conversion functions are horribly slow. those functions
rely on byte-wise operations which are in fact only emulated on newer (read:
468 and up) processors. rewriting the utf8-conversion to do 2 bytes at a time
(e.g. build a conversion-table at runtime for two-byte input) will effectively
double those functions' performance.
there are some general problems:
- currently wine simply opens a stream to the directory and reads all entries.
as there is no ordering of filenames applied, the first entry that matches
wins. the order is completely left to the OS and therefor random from our point
of view. this may lead to the situation, where wine returns the file "foo.Bar"
one time and "Foo.bar" another time, when asked for "FOO.BAR".
- as far as i can see, there is an unsolvable file-locking problem. creating a
file on the "real" fs implies automatic locking against other processes which
may do the same. since filenames are immutable between all processes performing
on the "real" filesystem, but not between those and wine, we will always
theoretically face toctou-bugs.
imho the best solution for this (except the locking-thing) would be to rely on
a cached intermediate state. when looking up files in a certain directory, we
read the entire directory into a cache-structure (including ordering Foo.bar
and foo.Bar) and start monitoring this directory using inotify.
one big advantage about inotify is the clarity of messages: when a new file is
added to the directory in question, we get to know the file's name in advance
and don't need to re-read the entire directory. consider a directory with 1.000
files, adding 100 files would require reading the directory once, reading from
the cache 100 times and adding to the cache 100 times.
if inotify is not present, we can always fall back to the slower version
already implemented.
--
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=3817
--- Comment #24 from ebfe <knabberknusperhaus(a)yahoo.de> 2008-02-03 16:34:13 ---
Created an attachment (id=10600)
--> (http://bugs.winehq.org/attachment.cgi?id=10600)
callgrind profiling path
profiling wine while saving a single file in a directory of thousand files.
--
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=9174
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #8 from Austin English <austinenglish(a)gmail.com> 2008-02-03 16:23:17 ---
Closing invalid.
--
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.