Updated ipc flag names with kernel-only versions without the L4 prefix.

This commit is contained in:
Bahadir Balban
2009-05-28 12:01:48 +03:00
parent b977e6597e
commit 391b0ca1d0
4 changed files with 44 additions and 34 deletions

View File

@@ -148,12 +148,12 @@ static inline unsigned int tcb_get_ipc_flags(struct ktcb *task)
static inline void tcb_set_ipc_type(struct ktcb *task,
unsigned int type)
{
task->ipc_flags = type & L4_IPC_FLAGS_TYPE_MASK;
task->ipc_flags = type & IPC_FLAGS_TYPE_MASK;
}
static inline unsigned int tcb_get_ipc_type(struct ktcb *task)
{
return task->ipc_flags & L4_IPC_FLAGS_TYPE_MASK;
return task->ipc_flags & IPC_FLAGS_TYPE_MASK;
}
#define THREAD_IDS_MAX 1024