Changeset 5d12283 in mainline
- Timestamp:
 - 2008-05-12T15:40:21Z (17 years ago)
 - Branches:
 - lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
 - Children:
 - 929ce92
 - Parents:
 - 2c4bbcde
 - File:
 - 
      
- 1 edited
 
- 
          
  kernel/generic/src/proc/thread.c (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
kernel/generic/src/proc/thread.c
r2c4bbcde r5d12283 266 266 * Create a new thread. 267 267 * 268 * @param func Thread's implementing function. 269 * @param arg Thread's implementing function argument. 270 * @param task Task to which the thread belongs. 271 * @param flags Thread flags. 272 * @param name Symbolic name. 273 * @param uncounted Thread's accounting doesn't affect accumulated task 274 * accounting. 275 * 276 * @return New thread's structure on success, NULL on failure. 268 * @param func Thread's implementing function. 269 * @param arg Thread's implementing function argument. 270 * @param task Task to which the thread belongs. The caller must 271 * guarantee that the task won't cease to exist during the 272 * call. The task's lock may not be held. 273 * @param flags Thread flags. 274 * @param name Symbolic name. 275 * @param uncounted Thread's accounting doesn't affect accumulated task 276 * accounting. 277 * 278 * @return New thread's structure on success, NULL on failure. 277 279 * 278 280 */  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  