utcb handling helper routines for the thread library.

This is one of the steps we need in the process of providing a similar interface
for thread creation which can be found in the mainstream operating systems like
Linux.
This commit is contained in:
Bora Sahin
2009-10-29 22:11:49 +02:00
parent 4bfd339db5
commit ede050ad37
11 changed files with 522 additions and 2 deletions

View File

@@ -15,8 +15,11 @@ from config.projpaths import *
Import('env')
LIBMEM_RELDIR = 'conts/libmem'
LIBMEM_DIR = join(PROJROOT, LIBMEM_RELDIR)
e = env.Clone()
e.Append(CPPPATH = ['include/l4thread'])
e.Append(CPPPATH = ['include/l4thread', LIBMEM_DIR])
source = [Glob('*.[cS]') + Glob('src/*.[cS]')]
objects = e.StaticObject(source)