Changeset 88169d9 in mainline for generic/src/proc/thread.c
- Timestamp:
- 2006-06-07T00:34:09Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 977649b
- Parents:
- 590cb380
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/proc/thread.c
r590cb380 r88169d9 76 76 }; 77 77 78 /** Lock protecting th reads_head list. For locking rules, see declaration thereof. */78 /** Lock protecting the threads_btree B+tree. For locking rules, see declaration thereof. */ 79 79 SPINLOCK_INITIALIZE(threads_lock); 80 btree_t threads_btree; /**< B+tree of all threads. */ 80 81 /** B+tree of all threads. 82 * 83 * When a thread is found in the threads_btree B+tree, it is guaranteed to exist as long 84 * as the threads_lock is held. 85 */ 86 btree_t threads_btree; 81 87 82 88 SPINLOCK_INITIALIZE(tidlock); … … 553 559 * interrupts must be already disabled. 554 560 * 555 * When a thread is found in threads_btree, it is guaranteed to exist as long556 * as the threads_lock is held.557 *558 561 * @param t Pointer to thread. 559 562 *
Note:
See TracChangeset
for help on using the changeset viewer.