public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* multithread programming
@ 1999-01-30 12:36 Alex
  1999-01-31 17:43 ` Stipe Tolj
                   ` (2 more replies)
  0 siblings, 3 replies; 18+ messages in thread
From: Alex @ 1999-01-30 12:36 UTC (permalink / raw)
  To: gnu-win32 mailing list

i wanted to learn how to code multithread programms
so i read a tutorial at
http://www.mit.edu:8001/people/proven/pthreads_man.html
and i looked for #include <pthread.h> and i didn't find it in cygwin B19

how can i make POSIX compliant multithread programms with cygwin ?

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: multithread programming
  1999-01-30 12:36 multithread programming Alex
@ 1999-01-31 17:43 ` Stipe Tolj
  1999-01-31 23:52   ` Stipe Tolj
  1999-02-01 13:12   ` Vasiliy
  1999-01-31 23:52 ` Alex
       [not found] ` <36B473CD.616A8732.cygnus.gnu-win32@uni-duesseldorf.de>
  2 siblings, 2 replies; 18+ messages in thread
From: Stipe Tolj @ 1999-01-31 17:43 UTC (permalink / raw)
  To: Alex; +Cc: gnu-win32 mailing list

Hi Alex,

> i wanted to learn how to code multithread programms
> so i read a tutorial at
> http://www.mit.edu:8001/people/proven/pthreads_man.html
> and i looked for #include <pthread.h> and i didn't find it in cygwin B19
>
> how can i make POSIX compliant multithread programms with cygwin ?

unfortunatly Cygwin b19 (and b20) are _not_ multithread safe. Therefore the
posix thread pthread package from MIT won't work.

That's at least what core developers have told me on that issue.

Regards,
Stipe

--
Stipe Tolj <tolj@uni-duesseldorf.de>

Cygwin Porting Project -- "We build UNIX on top of Windows"
http://www.student.uni-koeln.de/cygwin/

Department of Economical Computer Science
University of Cologne, Germany



-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: multithread programming
  1999-01-31 17:43 ` Stipe Tolj
@ 1999-01-31 23:52   ` Stipe Tolj
  1999-02-01 13:12   ` Vasiliy
  1 sibling, 0 replies; 18+ messages in thread
From: Stipe Tolj @ 1999-01-31 23:52 UTC (permalink / raw)
  To: Alex; +Cc: gnu-win32 mailing list

Hi Alex,

> i wanted to learn how to code multithread programms
> so i read a tutorial at
> http://www.mit.edu:8001/people/proven/pthreads_man.html
> and i looked for #include <pthread.h> and i didn't find it in cygwin B19
>
> how can i make POSIX compliant multithread programms with cygwin ?

unfortunatly Cygwin b19 (and b20) are _not_ multithread safe. Therefore the
posix thread pthread package from MIT won't work.

That's at least what core developers have told me on that issue.

Regards,
Stipe

--
Stipe Tolj <tolj@uni-duesseldorf.de>

Cygwin Porting Project -- "We build UNIX on top of Windows"
http://www.student.uni-koeln.de/cygwin/

Department of Economical Computer Science
University of Cologne, Germany



-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* multithread programming
  1999-01-30 12:36 multithread programming Alex
  1999-01-31 17:43 ` Stipe Tolj
@ 1999-01-31 23:52 ` Alex
       [not found] ` <36B473CD.616A8732.cygnus.gnu-win32@uni-duesseldorf.de>
  2 siblings, 0 replies; 18+ messages in thread
From: Alex @ 1999-01-31 23:52 UTC (permalink / raw)
  To: gnu-win32 mailing list

i wanted to learn how to code multithread programms
so i read a tutorial at
http://www.mit.edu:8001/people/proven/pthreads_man.html
and i looked for #include <pthread.h> and i didn't find it in cygwin B19

how can i make POSIX compliant multithread programms with cygwin ?

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: multithread programming
  1999-01-31 17:43 ` Stipe Tolj
  1999-01-31 23:52   ` Stipe Tolj
@ 1999-02-01 13:12   ` Vasiliy
  1999-02-01 18:58     ` Stipe Tolj
                       ` (2 more replies)
  1 sibling, 3 replies; 18+ messages in thread
From: Vasiliy @ 1999-02-01 13:12 UTC (permalink / raw)
  To: Stipe Tolj; +Cc: Alex, gnu-win32 mailing list

>
> unfortunatly Cygwin b19 (and b20) are _not_ multithread safe. Therefore the
> posix thread pthread package from MIT won't work.

Does it mean that it is impossible to port multithreaded application from Unix
to Win32    ???
                                                            Vasiliy

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: multithread programming
       [not found] ` <36B473CD.616A8732.cygnus.gnu-win32@uni-duesseldorf.de>
@ 1999-02-01 14:02   ` Christopher G. Faylor
  1999-02-02 17:44     ` Stipe Tolj
  1999-02-28 23:02     ` Christopher G. Faylor
  0 siblings, 2 replies; 18+ messages in thread
From: Christopher G. Faylor @ 1999-02-01 14:02 UTC (permalink / raw)
  To: gnu-win32

In article <36B473CD.616A8732.cygnus.gnu-win32@uni-duesseldorf.de>,
Stipe Tolj <tolj@uni-duesseldorf.de> wrote:
>> i wanted to learn how to code multithread programms
>> so i read a tutorial at
>> http://www.mit.edu:8001/people/proven/pthreads_man.html
>> and i looked for #include <pthread.h> and i didn't find it in cygwin B19
>>
>> how can i make POSIX compliant multithread programms with cygwin ?
>
>unfortunatly Cygwin b19 (and b20) are _not_ multithread safe. Therefore the
>posix thread pthread package from MIT won't work.
>
>That's at least what core developers have told me on that issue.

Actually, recent source snapshots have had a threadsafe option which has
to be manually configured.  This also includes limited pthread support.
-- 
cgf@cygnus.com
http://www.cygnus.com/
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: multithread programming
  1999-02-01 13:12   ` Vasiliy
@ 1999-02-01 18:58     ` Stipe Tolj
  1999-02-28 23:02       ` Stipe Tolj
       [not found]     ` < 36B570CC.FF960F57@nstu.ru >
  1999-02-28 23:02     ` Vasiliy
  2 siblings, 1 reply; 18+ messages in thread
From: Stipe Tolj @ 1999-02-01 18:58 UTC (permalink / raw)
  To: Vasiliy; +Cc: Alex, gnu-win32 mailing list

> >
> > unfortunatly Cygwin b19 (and b20) are _not_ multithread safe. Therefore the
> > posix thread pthread package from MIT won't work.
>
> Does it mean that it is impossible to port multithreaded application from Unix
> to Win32    ???

of course it _is_ possible if you consider to write pthread wrappers that take out
the multithreading ability of the application.

As you may know, Win9x shouldn't be considererd thread-safe at all, therefore how
could Cygwin fix that if it is a sub-system of the os. I just wanted to say, that
you can't compare Linux or Solaris (or what real UNIX ever) to Cygwin for
multithreading abilities.

I tried to port the MySQL database engine which uses the MIT's pthreads. And I got
stuck into deep trouble with the need of that pthread functions.

Maybe an upcoming release of Cygwin will be supporting the pthread packages in
some way.

Regards,
Stipe

--
Stipe Tolj <tolj@uni-duesseldorf.de>

Cygwin Porting Project -- "We build UNIX on top of Windows"
http://www.student.uni-koeln.de/cygwin/

Department of Economical Computer Science
University of Cologne, Germany




-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: multithread programming
       [not found]     ` < 36B570CC.FF960F57@nstu.ru >
@ 1999-02-02  4:48       ` Henry J. Cobb
  1999-02-28 23:02         ` Henry J. Cobb
  0 siblings, 1 reply; 18+ messages in thread
From: Henry J. Cobb @ 1999-02-02  4:48 UTC (permalink / raw)
  To: gnu-win32

>Does it mean that it is impossible to port multithreaded application from Unix
>to Win32    ???

All I've ever had to do was copy over the .class files. ;-)

Unfortunately, I'm stuck with MSVC-- for JNI DLLs until the cyg-libs are
threadsafe.



-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: multithread programming
  1999-02-01 14:02   ` Christopher G. Faylor
@ 1999-02-02 17:44     ` Stipe Tolj
       [not found]       ` < 36B7A837.DB33853@uni-duesseldorf.de >
  1999-02-28 23:02       ` Stipe Tolj
  1999-02-28 23:02     ` Christopher G. Faylor
  1 sibling, 2 replies; 18+ messages in thread
From: Stipe Tolj @ 1999-02-02 17:44 UTC (permalink / raw)
  To: Christopher G. Faylor; +Cc: gnu-win32

> >unfortunatly Cygwin b19 (and b20) are _not_ multithread safe. Therefore the
> >posix thread pthread package from MIT won't work.
> >
> >That's at least what core developers have told me on that issue.
>
> Actually, recent source snapshots have had a threadsafe option which has
> to be manually configured.  This also includes limited pthread support.

that sound great. So when can I expect to be able to port the MySQL database
engine using MIT's pthread package on Cygwin? Will be Cygwin b21 threadsafe and
pthread supporting?

What do I have to do, to get the pthread support active within the latest source
snapshot? Compile the whole cygwin1.dll? Which options do I have to configure
manually for this?

Regards,
Stipe

--
Stipe Tolj <tolj@uni-duesseldorf.de>

Cygwin Porting Project -- "We build UNIX on top of Windows"
http://www.student.uni-koeln.de/cygwin/

Department of Economical Computer Science
University of Cologne, Germany



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

* Re: multithread programming
       [not found]       ` < 36B7A837.DB33853@uni-duesseldorf.de >
@ 1999-02-02 17:54         ` Christopher Faylor
  1999-02-28 23:02           ` Christopher Faylor
  0 siblings, 1 reply; 18+ messages in thread
From: Christopher Faylor @ 1999-02-02 17:54 UTC (permalink / raw)
  To: Stipe Tolj; +Cc: cygwin

On Wed, Feb 03, 1999 at 02:36:56AM +0100, Stipe Tolj wrote:
>> >unfortunatly Cygwin b19 (and b20) are _not_ multithread safe. Therefore the
>> >posix thread pthread package from MIT won't work.
>> >
>> >That's at least what core developers have told me on that issue.
>>
>> Actually, recent source snapshots have had a threadsafe option which has
>> to be manually configured.  This also includes limited pthread support.
>
>that sound great. So when can I expect to be able to port the MySQL database
>engine using MIT's pthread package on Cygwin? Will be Cygwin b21 threadsafe and
>pthread supporting?
>
>What do I have to do, to get the pthread support active within the latest source
>snapshot? Compile the whole cygwin1.dll? Which options do I have to configure
>manually for this?

Yes, you'll need to compile cygwin1.dll.  Try running configure --help .
The options should be self-explanatory.

FYI, the pthread support is limited and the multithread support is still
considered experimental.

cgf

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

* Re: multithread programming
  1999-02-02 17:44     ` Stipe Tolj
       [not found]       ` < 36B7A837.DB33853@uni-duesseldorf.de >
@ 1999-02-28 23:02       ` Stipe Tolj
  1 sibling, 0 replies; 18+ messages in thread
From: Stipe Tolj @ 1999-02-28 23:02 UTC (permalink / raw)
  To: Christopher G. Faylor; +Cc: gnu-win32

> >unfortunatly Cygwin b19 (and b20) are _not_ multithread safe. Therefore the
> >posix thread pthread package from MIT won't work.
> >
> >That's at least what core developers have told me on that issue.
>
> Actually, recent source snapshots have had a threadsafe option which has
> to be manually configured.  This also includes limited pthread support.

that sound great. So when can I expect to be able to port the MySQL database
engine using MIT's pthread package on Cygwin? Will be Cygwin b21 threadsafe and
pthread supporting?

What do I have to do, to get the pthread support active within the latest source
snapshot? Compile the whole cygwin1.dll? Which options do I have to configure
manually for this?

Regards,
Stipe

--
Stipe Tolj <tolj@uni-duesseldorf.de>

Cygwin Porting Project -- "We build UNIX on top of Windows"
http://www.student.uni-koeln.de/cygwin/

Department of Economical Computer Science
University of Cologne, Germany




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

* Re: multithread programming
  1999-02-01 14:02   ` Christopher G. Faylor
  1999-02-02 17:44     ` Stipe Tolj
@ 1999-02-28 23:02     ` Christopher G. Faylor
  1 sibling, 0 replies; 18+ messages in thread
From: Christopher G. Faylor @ 1999-02-28 23:02 UTC (permalink / raw)
  To: gnu-win32

In article <36B473CD.616A8732.cygnus.gnu-win32@uni-duesseldorf.de>,
Stipe Tolj <tolj@uni-duesseldorf.de> wrote:
>> i wanted to learn how to code multithread programms
>> so i read a tutorial at
>> http://www.mit.edu:8001/people/proven/pthreads_man.html
>> and i looked for #include <pthread.h> and i didn't find it in cygwin B19
>>
>> how can i make POSIX compliant multithread programms with cygwin ?
>
>unfortunatly Cygwin b19 (and b20) are _not_ multithread safe. Therefore the
>posix thread pthread package from MIT won't work.
>
>That's at least what core developers have told me on that issue.

Actually, recent source snapshots have had a threadsafe option which has
to be manually configured.  This also includes limited pthread support.
-- 
cgf@cygnus.com
http://www.cygnus.com/
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: multithread programming
  1999-02-01 18:58     ` Stipe Tolj
@ 1999-02-28 23:02       ` Stipe Tolj
  0 siblings, 0 replies; 18+ messages in thread
From: Stipe Tolj @ 1999-02-28 23:02 UTC (permalink / raw)
  To: Vasiliy; +Cc: Alex, gnu-win32 mailing list

> >
> > unfortunatly Cygwin b19 (and b20) are _not_ multithread safe. Therefore the
> > posix thread pthread package from MIT won't work.
>
> Does it mean that it is impossible to port multithreaded application from Unix
> to Win32    ???

of course it _is_ possible if you consider to write pthread wrappers that take out
the multithreading ability of the application.

As you may know, Win9x shouldn't be considererd thread-safe at all, therefore how
could Cygwin fix that if it is a sub-system of the os. I just wanted to say, that
you can't compare Linux or Solaris (or what real UNIX ever) to Cygwin for
multithreading abilities.

I tried to port the MySQL database engine which uses the MIT's pthreads. And I got
stuck into deep trouble with the need of that pthread functions.

Maybe an upcoming release of Cygwin will be supporting the pthread packages in
some way.

Regards,
Stipe

--
Stipe Tolj <tolj@uni-duesseldorf.de>

Cygwin Porting Project -- "We build UNIX on top of Windows"
http://www.student.uni-koeln.de/cygwin/

Department of Economical Computer Science
University of Cologne, Germany




-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: multithread programming
  1999-02-02 17:54         ` Christopher Faylor
@ 1999-02-28 23:02           ` Christopher Faylor
  0 siblings, 0 replies; 18+ messages in thread
From: Christopher Faylor @ 1999-02-28 23:02 UTC (permalink / raw)
  To: Stipe Tolj; +Cc: cygwin

On Wed, Feb 03, 1999 at 02:36:56AM +0100, Stipe Tolj wrote:
>> >unfortunatly Cygwin b19 (and b20) are _not_ multithread safe. Therefore the
>> >posix thread pthread package from MIT won't work.
>> >
>> >That's at least what core developers have told me on that issue.
>>
>> Actually, recent source snapshots have had a threadsafe option which has
>> to be manually configured.  This also includes limited pthread support.
>
>that sound great. So when can I expect to be able to port the MySQL database
>engine using MIT's pthread package on Cygwin? Will be Cygwin b21 threadsafe and
>pthread supporting?
>
>What do I have to do, to get the pthread support active within the latest source
>snapshot? Compile the whole cygwin1.dll? Which options do I have to configure
>manually for this?

Yes, you'll need to compile cygwin1.dll.  Try running configure --help .
The options should be self-explanatory.

FYI, the pthread support is limited and the multithread support is still
considered experimental.

cgf

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

* Re: multithread programming
  1999-02-02  4:48       ` Henry J. Cobb
@ 1999-02-28 23:02         ` Henry J. Cobb
  0 siblings, 0 replies; 18+ messages in thread
From: Henry J. Cobb @ 1999-02-28 23:02 UTC (permalink / raw)
  To: gnu-win32

>Does it mean that it is impossible to port multithreaded application from Unix
>to Win32    ???

All I've ever had to do was copy over the .class files. ;-)

Unfortunately, I'm stuck with MSVC-- for JNI DLLs until the cyg-libs are
threadsafe.



-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: multithread programming
  1999-02-01 13:12   ` Vasiliy
  1999-02-01 18:58     ` Stipe Tolj
       [not found]     ` < 36B570CC.FF960F57@nstu.ru >
@ 1999-02-28 23:02     ` Vasiliy
  2 siblings, 0 replies; 18+ messages in thread
From: Vasiliy @ 1999-02-28 23:02 UTC (permalink / raw)
  To: Stipe Tolj; +Cc: Alex, gnu-win32 mailing list

>
> unfortunatly Cygwin b19 (and b20) are _not_ multithread safe. Therefore the
> posix thread pthread package from MIT won't work.

Does it mean that it is impossible to port multithreaded application from Unix
to Win32    ???
                                                            Vasiliy

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: multithread programming
  1999-02-02  8:04 Earnie Boyd
@ 1999-02-28 23:02 ` Earnie Boyd
  0 siblings, 0 replies; 18+ messages in thread
From: Earnie Boyd @ 1999-02-28 23:02 UTC (permalink / raw)
  To: Stipe Tolj, Vasiliy; +Cc: Alex, gnu-win32 mailing list

Slow down a little.  There is currently work at Cygnus to port the
pthread package to cygwin.  I'd check on the progress there first.



---Stipe Tolj <tolj@uni-duesseldorf.de> wrote:
>
> > >
> > > unfortunatly Cygwin b19 (and b20) are _not_ multithread safe.
Therefore the
> > > posix thread pthread package from MIT won't work.
> >
> > Does it mean that it is impossible to port multithreaded
application from Unix
> > to Win32    ???
> 
> of course it _is_ possible if you consider to write pthread wrappers
that take out
> the multithreading ability of the application.
> 
> As you may know, Win9x shouldn't be considererd thread-safe at all,
therefore how
> could Cygwin fix that if it is a sub-system of the os. I just wanted
to say, that
> you can't compare Linux or Solaris (or what real UNIX ever) to
Cygwin for
> multithreading abilities.
> 
> I tried to port the MySQL database engine which uses the MIT's
pthreads. And I got
> stuck into deep trouble with the need of that pthread functions.
> 
> Maybe an upcoming release of Cygwin will be supporting the pthread
packages in
> some way.
> 
> Regards,
> Stipe
> 
> --
> Stipe Tolj <tolj@uni-duesseldorf.de>
> 
> Cygwin Porting Project -- "We build UNIX on top of Windows"
> http://www.student.uni-koeln.de/cygwin/
> 
> Department of Economical Computer Science
> University of Cologne, Germany
> 
> 
> 
> 
> -
> For help on using this list (especially unsubscribing), send a
message to
> "gnu-win32-request@cygnus.com" with one line of text: "help".
> 

==
-                        \\||//
-------------------o0O0--Earnie--0O0o-------------------
--                earnie_boyd@yahoo.com               --
-- http://www.freeyellow.com/members5/gw32/index.html --
----------------------ooo0O--O0ooo----------------------

PS: Newbie's, you should visit my page.
_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: multithread programming
@ 1999-02-02  8:04 Earnie Boyd
  1999-02-28 23:02 ` Earnie Boyd
  0 siblings, 1 reply; 18+ messages in thread
From: Earnie Boyd @ 1999-02-02  8:04 UTC (permalink / raw)
  To: Stipe Tolj, Vasiliy; +Cc: Alex, gnu-win32 mailing list

Slow down a little.  There is currently work at Cygnus to port the
pthread package to cygwin.  I'd check on the progress there first.



---Stipe Tolj <tolj@uni-duesseldorf.de> wrote:
>
> > >
> > > unfortunatly Cygwin b19 (and b20) are _not_ multithread safe.
Therefore the
> > > posix thread pthread package from MIT won't work.
> >
> > Does it mean that it is impossible to port multithreaded
application from Unix
> > to Win32    ???
> 
> of course it _is_ possible if you consider to write pthread wrappers
that take out
> the multithreading ability of the application.
> 
> As you may know, Win9x shouldn't be considererd thread-safe at all,
therefore how
> could Cygwin fix that if it is a sub-system of the os. I just wanted
to say, that
> you can't compare Linux or Solaris (or what real UNIX ever) to
Cygwin for
> multithreading abilities.
> 
> I tried to port the MySQL database engine which uses the MIT's
pthreads. And I got
> stuck into deep trouble with the need of that pthread functions.
> 
> Maybe an upcoming release of Cygwin will be supporting the pthread
packages in
> some way.
> 
> Regards,
> Stipe
> 
> --
> Stipe Tolj <tolj@uni-duesseldorf.de>
> 
> Cygwin Porting Project -- "We build UNIX on top of Windows"
> http://www.student.uni-koeln.de/cygwin/
> 
> Department of Economical Computer Science
> University of Cologne, Germany
> 
> 
> 
> 
> -
> For help on using this list (especially unsubscribing), send a
message to
> "gnu-win32-request@cygnus.com" with one line of text: "help".
> 

==
-                        \\||//
-------------------o0O0--Earnie--0O0o-------------------
--                earnie_boyd@yahoo.com               --
-- http://www.freeyellow.com/members5/gw32/index.html --
----------------------ooo0O--O0ooo----------------------

PS: Newbie's, you should visit my page.
_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

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

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-01-30 12:36 multithread programming Alex
1999-01-31 17:43 ` Stipe Tolj
1999-01-31 23:52   ` Stipe Tolj
1999-02-01 13:12   ` Vasiliy
1999-02-01 18:58     ` Stipe Tolj
1999-02-28 23:02       ` Stipe Tolj
     [not found]     ` < 36B570CC.FF960F57@nstu.ru >
1999-02-02  4:48       ` Henry J. Cobb
1999-02-28 23:02         ` Henry J. Cobb
1999-02-28 23:02     ` Vasiliy
1999-01-31 23:52 ` Alex
     [not found] ` <36B473CD.616A8732.cygnus.gnu-win32@uni-duesseldorf.de>
1999-02-01 14:02   ` Christopher G. Faylor
1999-02-02 17:44     ` Stipe Tolj
     [not found]       ` < 36B7A837.DB33853@uni-duesseldorf.de >
1999-02-02 17:54         ` Christopher Faylor
1999-02-28 23:02           ` Christopher Faylor
1999-02-28 23:02       ` Stipe Tolj
1999-02-28 23:02     ` Christopher G. Faylor
1999-02-02  8:04 Earnie Boyd
1999-02-28 23:02 ` Earnie Boyd

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).