Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3096

Show
Ignore:
Timestamp:
01/14/08 21:02:08 (10 months ago)
Author:
sean
Message:

Improved the documentation for Thread.get/setLocal a bit. This closes #727.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/common/tango/core/Thread.d

    r3074 r3096  
    969969     * 
    970970     * Params: 
    971      * 
    972      * dg = The supplied code as a delegate. 
     971     *  dg = The supplied code as a delegate. 
    973972     * 
    974973     * Returns: 
     
    10051004 
    10061005    /** 
    1007      * Reserves a local storage pointer for use and initializes this 
    1008      * location to null for all running threads. 
     1006     * Reserves a local storage pointer for use and initializes this location 
     1007     * to null for all running threads. 
    10091008     * 
    10101009     * Returns: 
     
    10571056 
    10581057    /** 
    1059      * Gets the data associated with the supplied key value.  It is assumed 
    1060      * that any key passed to this function is valid. 
     1058     * Loads the value stored at key within a thread-local static array.  It is 
     1059     * assumed that any key passed to this function is valid. 
    10611060     * 
    10621061     * Params: 
     
    10731072 
    10741073    /** 
    1075      * Stores the supplied value in the specified location.  It is assumed 
    1076      * that any key passed to this function is valid. 
     1074     * Stores the supplied value at key within a thread-local static array.  It 
     1075     * is assumed that any key passed to this function is valid. 
    10771076     * 
    10781077     * Params: