Changeset 3096
- Timestamp:
- 01/14/08 21:02:08 (10 months ago)
- Files:
-
- trunk/lib/common/tango/core/Thread.d (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/common/tango/core/Thread.d
r3074 r3096 969 969 * 970 970 * Params: 971 * 972 * dg = The supplied code as a delegate. 971 * dg = The supplied code as a delegate. 973 972 * 974 973 * Returns: … … 1005 1004 1006 1005 /** 1007 * Reserves a local storage pointer for use and initializes this 1008 * locationto null for all running threads.1006 * Reserves a local storage pointer for use and initializes this location 1007 * to null for all running threads. 1009 1008 * 1010 1009 * Returns: … … 1057 1056 1058 1057 /** 1059 * Gets the data associated with the supplied key value. It is assumed1060 * 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. 1061 1060 * 1062 1061 * Params: … … 1073 1072 1074 1073 /** 1075 * Stores the supplied value in the specified location. It is assumed1076 * 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. 1077 1076 * 1078 1077 * Params:












