Dll Class Reference

class Dll

A collection of static functions involved in managing access to thread-local storage.

Thread-local storage is a single machine word of static writable memory. The scope of this machine word is the thread, which means that there is one word per thread. The word is only accessible to code running in a DLL.

In practice, this word is almost always used to hold a pointer to allocated memory; this makes that memory available to all DLL code running on behalf of the same thread.

Note that DLL code running on behalf of one thread does not see the same word when running on behalf of another thread.

The class in not intended for user derivation.

Public Member Functions
void FileName ( TFileName &)
void FreeTls ()
TInt SetTls ( TAny *)
TAny * Tls ()

Member Functions Documentation

FileName(TFileName &)

void FileName ( TFileName & aFileName ) [static]

Parameters

TFileName & aFileName

FreeTls()

void FreeTls ( ) [static]

SetTls(TAny *)

TInt SetTls ( TAny * aPtr ) [static]

Parameters

TAny * aPtr

Tls()

TAny * Tls ( ) [static]