Changeset 5d12283 in mainline for kernel/generic/src/proc/thread.c


Ignore:
Timestamp:
2008-05-12T15:40:21Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
929ce92
Parents:
2c4bbcde
Message:

Improve comment for thread_create().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/proc/thread.c

    r2c4bbcde r5d12283  
    266266 * Create a new thread.
    267267 *
    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.
    277279 *
    278280 */
Note: See TracChangeset for help on using the changeset viewer.