Files
codezero/include/l4/generic/thread.h
Bahadir Balban e2b791a3d8 Initial commit
2008-01-13 13:53:52 +00:00

15 lines
239 B
C

/*
* Copyright (C) 2007 Bahadir Balban
*/
#ifndef __THREAD_H__
#define __THREAD_H__
/* Thread id creation and deleting */
void thread_id_pool_init(void);
int thread_id_new(void);
int thread_id_del(int tid);
#endif /* __THREAD_H__ */