Files
codezero/conts/libl4thread/include/l4thread/utcb.h
Bora Sahin 1256f1a13a The second step in creating a thread library.
UTCB support has beed added. It has the same drawback as in the stack support:
the area in question has to be already mapped-in.

There are also some minor fixes for the stack support and the utcb common helper
routines.
2009-11-13 15:21:15 +02:00

16 lines
256 B
C

/*
* UTCB handling helper routines
*
* Copyright (C) 2009 B Labs Ltd.
*/
#ifndef __LIB_UTCB_H__
#define __LIB_UTCB_H__
#define IS_UTCB_SETUP() (udesc_ptr)
struct utcb_desc *udesc_ptr;
unsigned long get_utcb_addr(void);
#endif /* __LIB_UTCB_H__ */