diff options
author | erdgeist <> | 2007-11-22 04:38:25 +0000 |
---|---|---|
committer | erdgeist <> | 2007-11-22 04:38:25 +0000 |
commit | 4bf12406fb38d0ec0f6f9d156334d73e1b671830 (patch) | |
tree | bc5b9e43305c38596d487909d0d6a710276603c2 /ot_mutex.h | |
parent | c09ad325cc5a7f862018ded951ee934c7fc6f348 (diff) |
Introducing compression task flags
Diffstat (limited to 'ot_mutex.h')
-rw-r--r-- | ot_mutex.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -40,7 +40,13 @@ typedef enum { | |||
40 | TASK_DMEM = 0x0500, | 40 | TASK_DMEM = 0x0500, |
41 | 41 | ||
42 | TASK_DONE = 0x0f00, | 42 | TASK_DONE = 0x0f00, |
43 | TASK_MASK = 0xff00 | 43 | |
44 | TASK_FLAG_GZIP = 0x1000, | ||
45 | TASK_FLAG_BZIP2 = 0x2000, | ||
46 | |||
47 | TASK_TASK_MASK = 0x0fff, | ||
48 | TASK_CLASS_MASK = 0x0f00, | ||
49 | TASK_FLAGS_MASK = 0xf000 | ||
44 | } ot_tasktype; | 50 | } ot_tasktype; |
45 | 51 | ||
46 | typedef unsigned long ot_taskid; | 52 | typedef unsigned long ot_taskid; |