Add thread structure

This commit is contained in:
Quentin Legot
2023-03-10 19:01:21 +01:00
committed by François Autin
parent 958407ab77
commit 336ccd1425
6 changed files with 116 additions and 1 deletions
+2 -1
View File
@@ -1 +1,2 @@
pub mod list;
pub mod list;
pub mod system;
+9
View File
@@ -0,0 +1,9 @@
pub enum ObjectType {
SEMAPHORE_TYPE,
LOCK_TYPE,
CONDITION_TYPE,
FILE_TYPE,
THREAD_TYPE,
INVALID_TYPE
}