From 4bf12406fb38d0ec0f6f9d156334d73e1b671830 Mon Sep 17 00:00:00 2001 From: erdgeist <> Date: Thu, 22 Nov 2007 04:38:25 +0000 Subject: Introducing compression task flags --- ot_mutex.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'ot_mutex.h') diff --git a/ot_mutex.h b/ot_mutex.h index fd45397..e2106be 100644 --- a/ot_mutex.h +++ b/ot_mutex.h @@ -40,7 +40,13 @@ typedef enum { TASK_DMEM = 0x0500, TASK_DONE = 0x0f00, - TASK_MASK = 0xff00 + + TASK_FLAG_GZIP = 0x1000, + TASK_FLAG_BZIP2 = 0x2000, + + TASK_TASK_MASK = 0x0fff, + TASK_CLASS_MASK = 0x0f00, + TASK_FLAGS_MASK = 0xf000 } ot_tasktype; typedef unsigned long ot_taskid; -- cgit v1.2.3