Added M_HND_TASK_SELF

This commit is contained in:
Max Wash
2021-01-05 14:21:34 +00:00
parent 0b8bde25a5
commit f154ff9c0a
2 changed files with 3 additions and 0 deletions

View File

@@ -149,6 +149,8 @@ mx_handle_t m_get_handle(unsigned int type)
return rt_handles.exec_vmo;
case M_HND_VMO_VDSO:
return rt_handles.vdso_vmo;
case M_HND_TASK_SELF:
return rt_handles.task_self;
case M_HND_TNL_LDSVC:
return rt_handles.ldsvc;
case M_HND_TNL_BTSTP:

View File

@@ -9,6 +9,7 @@
#define M_HND_VMO_VDSO 0x04u
#define M_HND_TNL_LDSVC 0x05u
#define M_HND_TNL_BTSTP 0x06u
#define M_HND_TASK_SELF 0x07u
extern mx_handle_t m_get_handle(unsigned int type);