Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2798 → Rev 2799

/branches/tracing/kernel/generic/include/proc/thread.h
46,7 → 46,6
#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
204,9 → 203,6
 
/** Thread's kernel stack. */
uint8_t *kstack;
 
/** Task debugging stuff */
thread_tdebug_t tdebug;
} thread_t;
 
/** Thread list lock.
252,8 → 248,6
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;