|
Kernel Traffic Latest | Archives | People | Topics |
Wine Latest | Archives | People | Topics |
GNUe Latest | Archives | People | Topics |
| Czech |
| Home | News | RSS Feeds | Mailing Lists | Authors Info | Mirrors | Stalled Traffic |
Table Of Contents
| 1. | Headlines | ||
| 2. | 15 Feb 2001 - 26 Feb 2001 | (19 posts) | Wine's speed-up |
| 3. | 22 Mar 2001 - 2 Mar 2001 | (2 posts) | Wine press coverage |
| 4. | 4 Mar 2001 | (6 posts) | C Code style |
Introduction
This is the 85th release of the Wine's kernel cousin publication. It's main goal is to distribute widely what's going on around Wine (the Un*x windows emulator).Mailing List Stats For This Week
We looked at 45 posts in 190K.
There were 20 different contributors. 11 posted more than once. 9 posted last week too.
The top posters of the week were:
1. Headlines
Wine-20010305 has been released. Main changes include:
2. Wine's speed-up
15 Feb 2001 - 26 Feb 2001 (19 posts) Archive Link: "Speeding up wineserver syncronization objects with shared memory"
People: Gavriel State, Alexandre Julliard, , Ove Kaaven, TransGaming
(EdNote: resurrecting old article) Gavriel State put out a speed issue in current Wine code:3. Wine press coverage
22 Mar 2001 - 2 Mar 2001 (2 posts) Archive Link: "Wine press"
People: Bill O'Brien, , Eric Pouech
Eric Pouech posted a link to a C|Net article, making a comparison of three Linux products, letting Windows applications run on Linux. Those products are Wine (of course), VMware and Win4Lin. The article is pretty much product (and end user) oriented, hence the final bad ranking for Wine (so far, the Wine had put more effort into adding feature, rather than putting a 1.0 version). However, the potential for Wine is here. It just needs some more (oouch) work to terminate the developments. Here are the overall comparison from the CNET Linux Center's review by Bill O'Brien:| Product | Overall rank (1..10) | The good | The bad | The bottom line |
|---|---|---|---|---|
| VMware Workstation 2.03 | 9 | Provides a self-contained Windows environment that makes its Linux host platform nearly immune to collateral damage. | It's expensive. | VMware is an essential IS tool for multiplatform application management. |
| NeTraverse Win4Lin 2.0 | 7 | Simple installation; good documentation; works as promised. | No DirectX or Windows networking support. | Win4Lin is a bargain Windows emulation platform if you need just the basics. |
| Wine | 5 | Runs Windows apps without Windows; strong user community | Difficult to use; spotty application support; still under heavy development. | With its innovative approach to Windows compatibility, Wine is destined to play a major role in the world of Linux. But for now, it's not quite ready for prime time. |
4. C Code style
4 Mar 2001 (6 posts) Archive Link: "for loop fixes"
People: Alexandre Julliard, Andreas Mohr, , Francois Gouget
After an unwanted semi-colon had been found where it shouldn't: loops of the form:
for (i = nFirst; i <= nLast; i++)
{
/* do something */
}
, Andreas Mohr proposed several things.
First of all, he wanted to add a space between the closing parenthesis
and the semi-colon to indicate clearly the intent of putting an empty
C expression. Francois Gouget replied he preferred the writing of such
cases as
<init_expression>;
while (<test_condition>) {
<update_expression>;
}
Alexandre Julliard more than agreed: he converted such cases into the
while form of the loop.
Andreas also looked for other places plagued with the same default and
found another one (which he of course fixed).
Unsurprinsignly, this almost started a flame war on coding style (how
many spaces for a tab, which indentation style...). But it didn't
happen. Wine developers seemed to like sticking to the rule of letting
the developer do what best fits him (her), even if this doesn't
provide a consistent coding style across the source files.
Sharon And Joy
Kernel Traffic is grateful to be developed on a computer donated by Professor Greg Benson and Professor Allan Cruse in the Department of Computer Science at the University of San Francisco. This is the same department that invented FlashMob Computing. Kernel Traffic is hosted by the generous folks at kernel.org. All pages on this site are copyright their original authors, and distributed under the terms of the GNU General Public License version 2.0. |