Add bounded thread_queue implementation

This commit is contained in:
Nils O. Selåsdal
2012-11-12 19:41:36 +01:00
parent 12e27a4f76
commit 750dea4afe
4 changed files with 494 additions and 0 deletions
+1
View File
@@ -6,6 +6,7 @@ ucore_env = env.Clone()
#substitute @version_xx@ strings
subst_version_info = dict(('@' + key + '@', version_info[key]) for key in version_info)
ucore_env.Substfile('ucore_version.c.in', SUBST_DICT = subst_version_info)
ucore_env.Append(CFLAGS = ['-pthread'])
sources = ucore_env.Glob('*.c')
headers = ucore_env.Glob('*.h')