mirror of
https://github.com/drasko/codezero.git
synced 2026-02-05 22:43:15 +01:00
Updated ipc flag names with kernel-only versions without the L4 prefix.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user