public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* RE: Cygwin B20 - fseek under gcc fails to reposition on text files
@ 1999-02-16  7:41 Earnie Boyd
       [not found] ` < 19990216154134.3413.rocketmail@send104.yahoomail.com >
  1999-02-28 23:02 ` Earnie Boyd
  0 siblings, 2 replies; 108+ messages in thread
From: Earnie Boyd @ 1999-02-16  7:41 UTC (permalink / raw)
  To: Peter Kabal; +Cc: cygwin users

Ok I appoligize.

Here is the "Microsoft VC++ Run-Time Library Reference" quote:

For streams opened in text mode, fseek has limited use, because
carriage return-linefeed translations can cause fseek to produce
unexpected results.  The only fseek operations guaranteed to work on
streams opened in text mode are:

* Seeking with an offset of 0 relative to any of the origin values.

* Seeking from the beginning of the file with an offset value returned
from a call to ftell.

Also in text mode, CTRL+Z is interpreted as an end-of-file character
on input.  In files opened for reading/writing, fopen and all related
routines check for a CTRL+Z at the end of the file and remove it if
possible.  This is done because using fseek and ftell to move within
an file that ends in CTRL+Z may cause fseek to behave improperly near
the end of the file.

---

Based on the documentation then I'll have to agree that your programs
isn't behaving as the documentation states that it should.  But, which
is wrong, fseek or ftell?

Sorry for speaking out of line,
Earnie.

---Peter Kabal <kabal@ece.mcgill.ca> wrote:
>
> I did.  I quote from Harbison and Steele, Fourth edition, p 353.
> 
> "The following, more limited set of calls is permitted on text streams
> by ISO C:
> 
> fseek (stream, 0L, SEEK_SET)
> fseek (stream, 0L, SEEK_CUR)
> fseek (stream, 0L, SEEK_END)
> fseek (stream, 0L, ftell_pos, SEEK_SET)  at a position returned by a
>     previous call to ftell for stream.
> "
> 
> I <did> read the docs about "text mode processing"!  Your comment was
> unwarranted and warrants an apology.
> 
> > -----Original Message-----
> > From: Earnie Boyd [ mailto:earnie_boyd@yahoo.com ]
> > Sent: February 16, 1999 8:28 AM
> > To: kabal@ece.mcgill.ca
> > Cc: cygwin users
> > Subject: Re: Cygwin B20 - fseek under gcc fails to reposition on
text
> > files
> > 
> > 
> > 
> > You need to read the docs about "text mode processing".  This is
> > exactly the expected behavior.  If you're going to use these
functions
> > then you must process in binary mode.
> > 
> > Regards,
> > Earnie.
> > 
> > ---Peter Kabal <kabal@ECE.McGill.CA> wrote:
> > >
> > > Consider a text file (CR/LF line endings).  Read a line, save the
> > > current position, seek to end-of-file, seek to the saved position,
> > > read a line.  The second read does not return the second line of
> > > the file.
> > > 
> > > A shell script which tests the problem is included below:
> > >
---------------------------------------------------------------------
> > > #!/bin/sh
> > > #
> > > # Test fseek bug
> > > # On Cygwin 20.1, a file is not correctly repositioned after
seeking
> > to the
> > > # end-of-file on a text file (CR/LF line endings).
> > > 
> > > cat > tfrepos.c << EoF
> > > #include <stdio.h>
> > > int main (int argc, char *argv[])
> > > {
> > >   FILE *fp;
> > >   long int pos, size;
> > >   char line[200];
> > >   char *p;
> > > 
> > >   fp = fopen (argv[1], "r");
> > >   p = fgets (line, 200, fp);
> > >   printf (" Line: %s", p);
> > > 
> > >   pos = ftell (fp);
> > >   fseek (fp, 0L, SEEK_END);
> > >   fseek (fp, pos, SEEK_SET);
> > > 
> > >   p = fgets (line, 200, fp);
> > >   printf (" Line: %s", p);
> > > 
> > >   return 0;
> > > }
> > > EoF
> > > 
> > > # Run the test program with the c-program as input
> > > gcc tfrepos.c -o tfrepos
> > > ./tfrepos tfrepos.c
> > > 
> > > # Clean up
> > > rm -f tfrepos tfrepos.c
> > >
---------------------------------------------------------------------
> > > 
> > > Peter Kabal  kabal@ECE.McGill.CA
> > > Dept. Electrical & Computer Eng.
> > > McGill University 
> > > 
> > 
> > _________________________________________________________
> > DO YOU YAHOO!?
> > Get your free @yahoo.com address at http://mail.yahoo.com
> > 
> > 
> 

_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com

^ permalink raw reply	[flat|nested] 108+ messages in thread
* Re: Cygwin participation threshold
@ 1999-02-22  9:10 Suhaib M. Siddiqi
       [not found] ` < 008401be5e87$f1dcd510$29acdfd0@InspirePharm.Com >
  1999-02-28 23:02 ` Suhaib M. Siddiqi
  0 siblings, 2 replies; 108+ messages in thread
From: Suhaib M. Siddiqi @ 1999-02-22  9:10 UTC (permalink / raw)
  To: DJ Delorie, Paul Sokolovsky; +Cc: cygwin

>
>> Hopefully, that's what you wanted - to give people a nice tool,
>
>I think it would be more accurate to replace "give" with "share with".
>
>As a bit of history, Cygnus had a purely business reason to create
>cygwin.  Doing so let us host our tools on 95/NT platforms, which
>meant more customers (i.e. more money).  AFAIK, releasing cygwin to
>the net had two reasons: the first philosophical, in that we like to
>share; and the second practical, in that the more people using cygwin
>the more paid support contracts we'll get.


What about third party products. For example PGI Workstation comes
bundle with
Cygwin. It uses better commercial compilers and one has a choice to use
GCC/G77
or PGCC/PG77/PGF90 etc.  Who gets the *paid support* in that case?
I am just a bit curious!

Regards
Suhaib




--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

^ permalink raw reply	[flat|nested] 108+ messages in thread
* Re: Cygwin participation threshold
@ 1999-02-22 13:00 Suhaib M. Siddiqi
  1999-02-28 23:02 ` Suhaib M. Siddiqi
  0 siblings, 1 reply; 108+ messages in thread
From: Suhaib M. Siddiqi @ 1999-02-22 13:00 UTC (permalink / raw)
  To: DJ Delorie; +Cc: cygwin

>
>> Their product does not depend on Cygwin, but it does provide
>> switches to use Cygwin headers and libraries for porting purposes.
>> The fact is they got a commercial F77 and F90 which can use Cygwin
>> headers and libraries, makes it a really attractive product.
>
>In that case, it still acts to mkae cygwin more popular, which
>hopefully means that more people will use it in general, etc.
>

Absolutely true.  I guess PGi is the only product right now which offers
a
Cygwin compability, with F77/F90 and HPF for single and multiprocessors
machines.

That was the reason i decided to go for it.  To be honest G77 still lags
behind a normal F77 compiler.


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

^ permalink raw reply	[flat|nested] 108+ messages in thread
* Re: Cygwin participation threshold
@ 1999-02-22 20:54 Tom St Denis
  1999-02-28 23:02 ` Tom St Denis
  0 siblings, 1 reply; 108+ messages in thread
From: Tom St Denis @ 1999-02-22 20:54 UTC (permalink / raw)
  To: Carl Zmola, DJ Delorie; +Cc: cygwin

I agree, at first I was hesitant to try it, cause I thought it was
copyrighted, or whatever.... Anyways, I am not a big software
developer, but I thought I would give it a try.

Thanks to all who have contributed.  If I ever have the time,
patience, and enough know-how I will contrib something.  But I  doubt
that will happen any time soon.

Tom
+--------------------------------------------------------------------------+
| The coolest site for free home pages, email, chat, e-cards, movie info.. |
|               http://www.goplay.com - it's time to Go Play!              |
+--------------------------------------------------------------------------+

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

^ permalink raw reply	[flat|nested] 108+ messages in thread
* Re: Cygwin participation threshold
@ 1999-02-24 10:55 Steve Morris
       [not found] ` < 199902241855.NAA16459@brocade.nexen.com >
                   ` (2 more replies)
  0 siblings, 3 replies; 108+ messages in thread
From: Steve Morris @ 1999-02-24 10:55 UTC (permalink / raw)
  To: cygwin

Christopher Faylor writes:
 > It is interesting that you felt this way at first.  I wonder if the reason
 > has anything to do with the name "Cygwin" which sounds so similar to "Cygnus".
 > 
 > The reason I am saying this is because hundreds of people have contributed to
 > the linux project and *many* companies make money from linux.

Actually I think you've hit on a major issue. Even though Cygnus makes
cygwin available as sourceware it is obviously a Cygnus
product. Cygnus controls the feature set. Design decisions are made by
Cygnus. People can contribute but Cygnus is the final arbitor on
design decisions and even code style.

With gcc it is different. Cygnus is the official maintainer but the
perception is that Cygnus acts more as a custodian for FSF and the
free software community. FSF owns the copyright. Redhat is another
example. Redhat doesn't own Linux. RPM is the only significant thing
that RedHat copyrights and even that makes people nervous.

On the other hand Cygwin is obviously branded. Even the mailing list
is controlled by Cygnus. The developers mailing list access is
restricted by Cygnus engineers. The official Cygwin web page is
controlled by Cygnus. The bug list is an internal Cygnus system.

Psychologically it doesn't make me feel like I would count as much as
a Cygnus engineer if I contributed. Helping Cygnus with their free
software product doesn't have the same cachet as helping Linus Torvald
with his. Linus stands first among equals partners. How can I feel
like an equal partner to a company?

I guess the issue is not companies making money on free
software. Instead the issue is companies being perceived as
controlling the software development.

Tcl is entering the same delicate state. With Ousterhout starting
Scriptics which is now the official distributor of the release people
are beginning to get nervous. The question always hovers "will
Scriptics pull Tcl in and make it a commercial product?" TclPro is
$1000 a seat. What if new development or the good extensions only
appear in TclPro? Nobody begrudges Ousterhout's right to make money on
his major contribution but still there is anxiety.

I don't envy Cygnus as it tries to walk this tightrope.

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

^ permalink raw reply	[flat|nested] 108+ messages in thread
* Re: Cygwin participation threshold
@ 1999-02-24 13:43 Ken Thompson
  1999-02-28 23:02 ` Ken Thompson
  0 siblings, 1 reply; 108+ messages in thread
From: Ken Thompson @ 1999-02-24 13:43 UTC (permalink / raw)
  To: cygwin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1163 bytes --]

I wonder if part of the reason that there is a lot more
participation on Linux as opposed to cygwin is that maybe most people who
use cygwin do so because there job requires use of a windows platform but
need the tool set provided by Linux/Unix.  At home on their own
time, they are much more likely to muck around with Linux than
windows/cygwin.  Just a thought.

                                    Ken


Ken
Thompson                            
GTRI/ELSYS/SEN 
(404) 894-7089
(VOICE)              
(404) 596-5995 (PAGER) 
(404) 894-7080
(FAX)                  
ken.thompson@gtri.gatech.edu 
The aspiration toward freedom is the most
essentially human of all human manifestations. 
                    
- Eric Hoffer 


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


^ permalink raw reply	[flat|nested] 108+ messages in thread
* RE: Cygwin participation threshold
@ 1999-02-25 10:09 Bernard Dautrevaux
  1999-02-28 23:02 ` Bernard Dautrevaux
  0 siblings, 1 reply; 108+ messages in thread
From: Bernard Dautrevaux @ 1999-02-25 10:09 UTC (permalink / raw)
  To: 'DJ Delorie', cgf; +Cc: cygwin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2834 bytes --]

> -----Original Message-----
> From: DJ Delorie [ mailto:dj@delorie.com ]
> Sent: Wednesday, February 24, 1999 10:50 PM
> To: cgf@cygnus.com
> Cc: cygwin@sourceware.cygnus.com
> Subject: Re: Cygwin participation threshold
> 
> 
> 
> > If it doesn't then I don't know how to overcome this obstacle.  I
> > could give personal assurances that Cygwin will always be free but
> > since Cygnus is a business, DJ and I could be booted out tomorrow
> > and replaced by some evil software hoarders.
> 
> Even if that happens, you could always take the most recent net
> release of cygwin and move forward with it.  It is, after all, GPL.
> 

I wonder if that was not precisely the reason of the lack of
contributors to cygwin. Let make a supposition: suppose Linus had put on
the Linux kernel (the equivalent to cygwin.dll) a copyright saying that
*any* program run under Linux *must* be distributed in source form under
the GPL... I'm quite sure Linux would *not* have been as successful as
it is, would had *a lot* less contributors, and would certainly *not* be
promoted now by little guys like Compaq and HP...

I would like to use cygwin, and I would certainly contribute to cygwin
(helping to solve the problems that bother me in it), but I'm not *able*
to use it (I *have* to restrain to mingw32) because I have to live from
my work and thus I have to sell my software.

How I understand free software is that I'm ready to help build powerful
free tools like cygwin, if I can use this work to earn my life. However
my boss would not allow me to spend my time on cygwin, as he cannot sold
proprietary code built with it. So I *can't* contribute, not because
cygwin is complicated (I'm myself building real-time executives and I
know what complexity is), not because someone may send my patches back
because they are not good enough (I'm sure the first one would be, or
cygwin will be a lot worse than it is), not because cygnus is a company
earning money with free software (I'd like to also). 

The whole point here is these three letters: GPL; let add a 4th one (an
initial L) and it could be a lot more successful, and people that do not
think at contributing would do (at least I would probably do because, at
least for now, I will probably need to if I use it seriously).

Hope this will not start a new GPL/nonGPL flame war; GPL is fine but I
think LGPL would be a lot more appropriate for cygwin.dll.

Best regards, 

		Bernard

--------------------------------------------
Bernard Dautrevaux
Microprocess Ingéniérie
97 bis, rue de Colombes
92400 COURBEVOIE
FRANCE
Tel:	+33 (0) 1 47 68 80 80
Fax:	+33 (0) 1 47 88 97 85
e-mail:	dautrevaux@microprocess.com
		b.dautrevaux@usa.net
-------------------------------------------- 

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

^ permalink raw reply	[flat|nested] 108+ messages in thread
* Re: Cygwin participation threshold
@ 1999-02-25 10:24 Suhaib M. Siddiqi
       [not found] ` < 004c01be60ee$09a84c20$29acdfd0@InspirePharm.Com >
  1999-02-28 23:02 ` Suhaib M. Siddiqi
  0 siblings, 2 replies; 108+ messages in thread
From: Suhaib M. Siddiqi @ 1999-02-25 10:24 UTC (permalink / raw)
  To: Bernard Dautrevaux, 'DJ Delorie', Christopher G. Faylor; +Cc: cygwin

>I wonder if that was not precisely the reason of the lack of
>contributors to cygwin. Let make a supposition: suppose Linus had put
on
>the Linux kernel (the equivalent to cygwin.dll) a copyright saying that
>*any* program run under Linux *must* be distributed in source form
under
>the GPL...


Does the GPL applies to GNUPro, which is distributed for commercial
use?



>I'm quite sure Linux would *not* have been as successful as
>it is, would had *a lot* less contributors, and would certainly *not*
be
>promoted now by little guys like Compaq and HP...
>
>I would like to use cygwin, and I would certainly contribute to cygwin
>(helping to solve the problems that bother me in it), but I'm not
*able*
>to use it (I *have* to restrain to mingw32) because I have to live from
>my work and thus I have to sell my software.






--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

^ permalink raw reply	[flat|nested] 108+ messages in thread
* RE: Cygwin participation threshold
@ 1999-02-26  0:26 Bernard Dautrevaux
       [not found] ` < 8135911A809AD211AF6300A02480D175034922@iis000.microdata.fr >
  1999-02-28 23:02 ` Bernard Dautrevaux
  0 siblings, 2 replies; 108+ messages in thread
From: Bernard Dautrevaux @ 1999-02-26  0:26 UTC (permalink / raw)
  To: 'DJ Delorie', Ssiddiqi; +Cc: cygwin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2790 bytes --]

> -----Original Message-----
> From: DJ Delorie [ mailto:dj@delorie.com ]
> Sent: Thursday, February 25, 1999 7:36 PM
> To: Ssiddiqi@InspirePharm.Com
> Cc: cygwin@sourceware.cygnus.com
> Subject: Re: Cygwin participation threshold
> 
> 
> 
> > Does the GPL applies to GNUPro, which is distributed for commercial
> > use?
> 
> GNUPro is made up of a number of components with a number of licensing
> terms, just like djgpp is.  Those parts that are copyrighted by
> authors other than Cygnus, like gcc, must be distributed under the
> terms the author supplied, in this case the GPL.  Cygnus can do
> nothing about that.
> 
> However, Cygnus is the author of some of those parts (like I'm the
> author of djgpp's libc) and can choose alternate terms for alternate
> distributions.  For example, our C runtime and cygwin runtimes were
> written by us, so we can decide that they're GPL for this release, and
> proprietary for that release.  If you purchase a GNUPro distribution
> from us, it comes with the same software as a net release (except it's
> been QAd, may have some as-yet-unreleased improvements over the net
> release, and is supported by Cygnus) but we use a different license
> that lets you use our runtimes in proprietary applications.  It just
> isn't practical to provide source code for cell phones :) The 
> fees from
> these sales are the primary source of funding for the software, and
> thus pay for the net releases.
> 

So if I understand you corectly, if I *pay* it may be interesting for me
to contribute *pro-bono* to the net release? perhaps I'll negociate
discounts on my payments against my contributions? :-) 

Seriously I effectively remember having noted that I may get a cygwin
release not covered by the GPL against a fee (the one thing I don't know
is "how much?"); however I think it's quite discouraging to see Cygnus,
known to be able to earn its life with free software due to its
excellent support to its high-grade customers (I think I remember
support contracts with Cygnus were quite expensive), shift to a purely
mercantile strategy: If you pay, you'll get the right to earn some money
and to use some proprietary Cygnus code and corrections that may never
be put in the net release...

Too bad for free software fate :-( or *please* explain me that I'm plain
wrong and that Cygnus is not doing anything like that...

Best regards,

		Bernard

--------------------------------------------
Bernard Dautrevaux
Microprocess Ingéniérie
97 bis, rue de Colombes
92400 COURBEVOIE
FRANCE
Tel:	+33 (0) 1 47 68 80 80
Fax:	+33 (0) 1 47 88 97 85
e-mail:	dautrevaux@microprocess.com
		b.dautrevaux@usa.net
-------------------------------------------- 

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

^ permalink raw reply	[flat|nested] 108+ messages in thread
* Re: Cygwin participation threshold
@ 1999-02-28 16:22 Christopher G. Faylor
  1999-02-28 23:02 ` Christopher G. Faylor
  0 siblings, 1 reply; 108+ messages in thread
From: Christopher G. Faylor @ 1999-02-28 16:22 UTC (permalink / raw)
  To: cgf, smorris; +Cc: cygwin

>From: Steve Morris <smorris@nexen.com>
>Date: Fri, 26 Feb 1999 11:55:50 -0500 (EST)
>
>In all this discussion something important is being lost. Cris
>bemoaned the lack of development support for cygwin and asked for
>reasons. I and others tried to explain where we think the issues
>are. Inevitably this comes out sounding negative, but at least on my
>part, this is not intended. Maybe we took Cris' questions too
>literally. Flogging Cygnus was not the intent. We were trying to offer
>legitimate feedback to a legitimate question.
>
>Let me reiterate that Cygnus is clearly one of the Good Guys. The best
>guys are the Cygnus employees (like Cris) who volunteer their own time
>to this project.
>
>Many of us are rooting for Cygnus and are hoping more companies figure
>out how to make money on free software; because they then tend to give
>back. As an example gcc and gdb have been in much better shape all
>these years since Cygnus became the official release site.

Thanks very much for this positive note.

I was hoping that my original message would generate a lot of discussion
because I thought that it would give DJ and myself an opportunity to
explain something about Cygnus/Cygwin as well as providing a venue
for everyone else to provide their outlook.

It may not be obvious but I do appreciate any and all feedback on this
issue.  It certainly helps educate me on people's perception of my
company and my product.  I do want to understand what people think
about this.

That doesn't mean that I won't argue with perceptions that I think
are wrong but I certainly respect everyone's right to an opinion.

Again, thanks to you and to the handful of other people who sent me
private supportive email.  I appreciate it.

cgf

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

^ permalink raw reply	[flat|nested] 108+ messages in thread

end of thread, other threads:[~1999-02-28 23:02 UTC | newest]

Thread overview: 108+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-02-16  7:41 Cygwin B20 - fseek under gcc fails to reposition on text files Earnie Boyd
     [not found] ` < 19990216154134.3413.rocketmail@send104.yahoomail.com >
1999-02-16 17:52   ` Christopher Faylor
     [not found]     ` < 19990216205243.L16511@cygnus.com >
1999-02-16 18:18       ` DJ Delorie
1999-02-28 23:02         ` DJ Delorie
1999-02-17  2:01     ` Corinna Vinschen
     [not found]       ` < 36CA92B5.844635AA@cityweb.de >
1999-02-17  8:07         ` DJ Delorie
1999-02-28 23:02           ` DJ Delorie
1999-02-17 13:46         ` J. J. Farrell
1999-02-28 23:02           ` J. J. Farrell
1999-02-17  9:36       ` Re[2]: " Paul Sokolovsky
     [not found]         ` < 17817.990217@is.lg.ua >
1999-02-17 10:07           ` DJ Delorie
     [not found]             ` < 199902171807.NAA16764@envy.delorie.com >
1999-02-17 19:16               ` Larry Hall
     [not found]                 ` < 3.0.5.32.19990217221306.0162b070@pop.ma.ultranet.com >
1999-02-17 19:19                   ` DJ Delorie
     [not found]                     ` < 199902180318.WAA20394@envy.delorie.com >
1999-02-17 20:13                       ` Larry Hall
1999-02-28 23:02                         ` Larry Hall
1999-02-28 23:02                     ` DJ Delorie
1999-02-28 23:02                 ` Larry Hall
1999-02-28 23:02             ` DJ Delorie
1999-02-17 13:37         ` Corinna Vinschen
1999-02-19  2:30           ` Re[2]: " Paul Sokolovsky
     [not found]             ` < 17776.990218@is.lg.ua >
1999-02-19  6:36               ` Christopher Faylor
1999-02-22  3:26                 ` Re[2]: " Paul Sokolovsky
     [not found]                   ` < 13561.990222@is.lg.ua >
1999-02-22  8:55                     ` Cygwin participation threshold DJ Delorie
     [not found]                       ` < 199902221654.LAA07362@envy.delorie.com >
1999-02-22 10:33                         ` Carl Zmola
     [not found]                           ` < 19990222183222023.AAA254@carl_zmola >
1999-02-22 11:21                             ` Fergus Henderson
1999-02-28 23:02                               ` Fergus Henderson
1999-02-22 12:32                             ` DJ Delorie
1999-02-28 23:02                               ` DJ Delorie
1999-02-24  0:08                             ` Christopher Faylor
     [not found]                               ` < 19990223214848.A23525@cygnus.com >
1999-02-24  5:51                                 ` Fergus Henderson
     [not found]                                   ` < 19990225005148.53402@mundook.cs.mu.OZ.AU >
1999-02-24  9:18                                     ` Christopher Faylor
1999-02-24 19:23                                       ` Weiqi Gao
     [not found]                                         ` < 36D4C298.32C1C355@a.crl.com >
1999-02-25  0:23                                           ` Fergus Henderson
1999-02-25  6:01                                             ` Weiqi Gao
1999-02-25 13:48                                               ` Re[2]: " Paul Sokolovsky
1999-02-28 23:02                                                 ` Paul Sokolovsky
1999-02-28 23:02                                               ` Weiqi Gao
1999-02-28 23:02                                             ` Fergus Henderson
1999-02-28 23:02                                         ` Weiqi Gao
     [not found]                                       ` < 19990224121846.A25762@cygnus.com >
1999-02-25  0:14                                         ` Fergus Henderson
     [not found]                                           ` < 19990225191420.16813@mundook.cs.mu.OZ.AU >
1999-02-25  1:00                                             ` Lam Pui Yuen
     [not found]                                               ` < Pine.BSI.3.95.990225170005.16688A-100000@topaz.hknet.com >
1999-02-25  1:09                                                 ` Lam Pui Yuen
1999-02-28 23:02                                                   ` Lam Pui Yuen
1999-02-28 23:02                                               ` Lam Pui Yuen
1999-02-28 23:02                                           ` Fergus Henderson
1999-02-28 23:02                                       ` Christopher Faylor
1999-02-28 23:02                                   ` Fergus Henderson
1999-02-24 10:37                                 ` Carl Zmola
     [not found]                                   ` < 19990224183738302.AAA218@carl_zmola >
1999-02-24 10:44                                     ` Christopher Faylor
     [not found]                                       ` < 19990224134450.B26262@cygnus.com >
1999-02-24 10:48                                         ` Carl Zmola
1999-02-28 23:02                                           ` Carl Zmola
1999-02-28 23:02                                       ` Christopher Faylor
1999-02-28 23:02                                   ` Carl Zmola
1999-02-28 23:02                               ` Christopher Faylor
1999-02-28 23:02                           ` Carl Zmola
1999-02-28 23:02                       ` DJ Delorie
1999-02-28 23:02                   ` Re[2]: Cygwin B20 - fseek under gcc fails to reposition on text files Paul Sokolovsky
1999-02-28 23:02                 ` Christopher Faylor
1999-02-28 23:02             ` Re[2]: " Paul Sokolovsky
1999-02-28 23:02           ` Corinna Vinschen
1999-02-28 23:02         ` Re[2]: " Paul Sokolovsky
1999-02-28 23:02       ` Corinna Vinschen
1999-02-28 23:02     ` Christopher Faylor
1999-02-28 23:02 ` Earnie Boyd
1999-02-22  9:10 Cygwin participation threshold Suhaib M. Siddiqi
     [not found] ` < 008401be5e87$f1dcd510$29acdfd0@InspirePharm.Com >
1999-02-22 11:38   ` DJ Delorie
1999-02-28 23:02     ` DJ Delorie
1999-02-28 23:02 ` Suhaib M. Siddiqi
1999-02-22 13:00 Suhaib M. Siddiqi
1999-02-28 23:02 ` Suhaib M. Siddiqi
1999-02-22 20:54 Tom St Denis
1999-02-28 23:02 ` Tom St Denis
1999-02-24 10:55 Steve Morris
     [not found] ` < 199902241855.NAA16459@brocade.nexen.com >
1999-02-24 12:40   ` Christopher Faylor
1999-02-24 13:13     ` Re[2]: " Paul Sokolovsky
     [not found]       ` < 2965.990224@is.lg.ua >
1999-02-24 13:21         ` Christopher Faylor
     [not found]           ` < 19990224162212.A27405@cygnus.com >
1999-02-25 22:51             ` Geoffrey Noer
     [not found]               ` < 19990225225149.A1388@cygnus.com >
1999-02-26  7:26                 ` Larry Hall
1999-02-28 23:02                   ` Larry Hall
1999-02-28 23:02               ` Geoffrey Noer
1999-02-28 23:02           ` Christopher Faylor
     [not found]     ` < 19990224154034.E26668@cygnus.com >
1999-02-24 13:50       ` DJ Delorie
1999-02-28 23:02         ` DJ Delorie
1999-02-26  8:27       ` Steve Morris
     [not found]         ` < 199902261627.LAA18993@brocade.nexen.com >
1999-02-27  7:49           ` Todd Goodman
1999-02-28 23:02             ` Todd Goodman
1999-02-28 23:02         ` Steve Morris
1999-02-26  8:55       ` Steve Morris
1999-02-28 23:02         ` Steve Morris
1999-02-28 23:02     ` Christopher Faylor
1999-02-24 12:46 ` Re[2]: " Paul Sokolovsky
     [not found]   ` < 15947.990224@is.lg.ua >
1999-02-24 13:28     ` Christopher Faylor
     [not found]       ` < 19990224162911.A27461@cygnus.com >
1999-02-24 14:16         ` Mumit Khan
1999-02-28 23:02           ` Mumit Khan
1999-02-28 23:02       ` Christopher Faylor
1999-02-28 23:02 ` Steve Morris
1999-02-24 13:43 Ken Thompson
1999-02-28 23:02 ` Ken Thompson
1999-02-25 10:09 Bernard Dautrevaux
1999-02-28 23:02 ` Bernard Dautrevaux
1999-02-25 10:24 Suhaib M. Siddiqi
     [not found] ` < 004c01be60ee$09a84c20$29acdfd0@InspirePharm.Com >
1999-02-25 10:36   ` DJ Delorie
1999-02-28 23:02     ` DJ Delorie
1999-02-28 23:02 ` Suhaib M. Siddiqi
1999-02-26  0:26 Bernard Dautrevaux
     [not found] ` < 8135911A809AD211AF6300A02480D175034922@iis000.microdata.fr >
1999-02-26  8:40   ` DJ Delorie
1999-02-28 23:02     ` DJ Delorie
1999-02-28 23:02 ` Bernard Dautrevaux
1999-02-28 16:22 Christopher G. Faylor
1999-02-28 23:02 ` Christopher G. Faylor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).