Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2502 → Rev 2787

/branches/tracing/kernel/generic/include/proc/thread.h
46,6 → 46,7
#include <arch/cpu.h>
#include <mm/tlb.h>
#include <proc/uarg.h>
#include <tdebug/tdebug_type.h>
 
#define THREAD_STACK_SIZE STACK_SIZE
#define THREAD_NAME_BUFLEN 20
203,6 → 204,9
 
/** Thread's kernel stack. */
uint8_t *kstack;
 
/** Task debugging stuff */
thread_tdebug_t tdebug;
} thread_t;
 
/** Thread list lock.
248,6 → 252,8
extern void thread_update_accounting(void);
extern bool thread_exists(thread_t *t);
 
extern thread_t *thread_find_by_id(thread_id_t id);
 
/** Fpu context slab cache. */
extern slab_cache_t *fpu_context_slab;