Re: Thread-local storage

2001-05-07 Thread Matt Fahrner
> Thanks. > > > > Terry > > > > -Original Message- > > From: Matt Fahrner [mailto:[EMAIL PROTECTED]] > > Sent: Thursday, April 26, 2001 3:19 PM > > To: [EMAIL PROTECTED] > > Subject: Re: Thread-local storage > > > > If you mean "

Re: Thread-local storage

2001-05-07 Thread Matt Fahrner
pthread_create()? > > Thanks. > > Terry > > -Original Message- > From: Matt Fahrner [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 26, 2001 3:19 PM > To: [EMAIL PROTECTED] > Subject: Re: Thread-local storage > > If you mean "thread sp

RE: Thread-local storage

2001-04-26 Thread Terry Gin
riginal Message- From: Matt Fahrner [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 3:19 PM To: [EMAIL PROTECTED] Subject: Re: Thread-local storage If you mean "thread specific" data then POSIX threads (pthreads) has "pthread_key_create()" and "pthread_setspec

Re: Thread-local storage

2001-04-26 Thread Matt Fahrner
If you mean "thread specific" data then POSIX threads (pthreads) has "pthread_key_create()" and "pthread_setspecific()" to do so See the man for it. - Matt Terry Gin wrote: > > I'm porting an app that currently runs on both Win32 and HP-UX to Linux. > MSVC++ support