thread local storage in kernel mode

Hi,
Are there a kernel mode equivelents to the win32 Tls* calls?

Thanks,
Joel

thread local storage in kernel modeEach thread does have some thread local storage
off of FS I think, but this is not exposed to the rest of us.

I’ve always believed that you’d have to do something convoluted
such as run the thread ID through some lookup function to get
per thread storage for a driver.

-DH

----- Original Message -----
From: Smith, Joel
To: NT Developers Interest List
Sent: Monday, December 11, 2000 4:00 PM
Subject: [ntdev] thread local storage in kernel mode

Hi,
Are there a kernel mode equivelents to the win32 Tls* calls?

Thanks,
Joel


You are currently subscribed to ntdev as: xxxxx@syssoftsol.com
To unsubscribe send a blank email to $subst(‘Email.Unsub’)

thread local storage in kernel mode>I’ve always believed that you’d have to
do something convoluted

such as run the thread ID through some lookup function to get
per thread storage for a driver.

Cleaning up the table entries will be a problem with this approach.

Max