diff options
author | Haru <haru@dotalux.com> | 2016-03-14 01:26:28 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-07-12 20:58:43 +0200 |
commit | b0a4a441f582810c91aeec458fdbe7cc6cc78db9 (patch) | |
tree | 5ff3c893d02984f5797b03c40b466970bce35a5b /src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc | |
parent | c4a3a3f59e5720b300077c3d34aa7f4ecdd76400 (diff) | |
download | hercules-b0a4a441f582810c91aeec458fdbe7cc6cc78db9.tar.gz hercules-b0a4a441f582810c91aeec458fdbe7cc6cc78db9.tar.bz2 hercules-b0a4a441f582810c91aeec458fdbe7cc6cc78db9.tar.xz hercules-b0a4a441f582810c91aeec458fdbe7cc6cc78db9.zip |
HPM Hooks Update
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc')
-rw-r--r-- | src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc index 4f103df81..6d7b62cff 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc @@ -3005,6 +3005,18 @@ struct HookingPointData HookingPoints[] = { { HP_POP(sysinfo->is_superuser, HP_sysinfo_is_superuser) }, { HP_POP(sysinfo->init, HP_sysinfo_init) }, { HP_POP(sysinfo->final, HP_sysinfo_final) }, +/* thread_interface */ + { HP_POP(thread->init, HP_thread_init) }, + { HP_POP(thread->final, HP_thread_final) }, + { HP_POP(thread->create, HP_thread_create) }, + { HP_POP(thread->create_opt, HP_thread_create_opt) }, + { HP_POP(thread->destroy, HP_thread_destroy) }, + { HP_POP(thread->self, HP_thread_self) }, + { HP_POP(thread->get_tid, HP_thread_get_tid) }, + { HP_POP(thread->wait, HP_thread_wait) }, + { HP_POP(thread->prio_set, HP_thread_prio_set) }, + { HP_POP(thread->prio_get, HP_thread_prio_get) }, + { HP_POP(thread->yield, HP_thread_yield) }, /* timer_interface */ { HP_POP(timer->gettick, HP_timer_gettick) }, { HP_POP(timer->gettick_nocache, HP_timer_gettick_nocache) }, |