Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 622 → Rev 623

/kernel/trunk/generic/src/proc/thread.c
54,10 → 54,10
 
char *thread_states[] = {"Invalid", "Running", "Sleeping", "Ready", "Entering", "Exiting"}; /**< Thread states */
 
spinlock_t threads_lock; /**< Lock protecting threads_head list. For locking rules, see declaration thereof. */
link_t threads_head; /**< List of all threads. */
SPINLOCK_INITIALIZE(threads_lock); /**< Lock protecting threads_head list. For locking rules, see declaration thereof. */
link_t threads_head; /**< List of all threads. */
 
static spinlock_t tidlock;
SPINLOCK_INITIALIZE(tidlock);
__u32 last_tid = 0;
 
 
96,7 → 96,6
{
THREAD = NULL;
nrdy = 0;
spinlock_initialize(&threads_lock, "threads_lock");
list_initialize(&threads_head);
}