diff options
author | Haru <haru@dotalux.com> | 2016-03-13 20:51:23 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-07-12 20:58:38 +0200 |
commit | 2af9259a48ef9d7ec864fa80d1cb0392f2f2ee7a (patch) | |
tree | 27911973127264619a7832dfcc286980a73dcc4c /src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc | |
parent | 14d410fc8695049691bfb5e70e881020625f7a85 (diff) | |
download | hercules-2af9259a48ef9d7ec864fa80d1cb0392f2f2ee7a.tar.gz hercules-2af9259a48ef9d7ec864fa80d1cb0392f2f2ee7a.tar.bz2 hercules-2af9259a48ef9d7ec864fa80d1cb0392f2f2ee7a.tar.xz hercules-2af9259a48ef9d7ec864fa80d1cb0392f2f2ee7a.zip |
HPM Hooks Update
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc')
-rw-r--r-- | src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc index 15db8625a..405dd4a91 100644 --- a/src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc +++ b/src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc @@ -619,6 +619,17 @@ struct HookingPointData HookingPoints[] = { { HP_POP(md5->string, HP_md5_string) }, { HP_POP(md5->binary, HP_md5_binary) }, { HP_POP(md5->salt, HP_md5_salt) }, +/* mutex_interface */ + { HP_POP(mutex->create, HP_mutex_create) }, + { HP_POP(mutex->destroy, HP_mutex_destroy) }, + { HP_POP(mutex->lock, HP_mutex_lock) }, + { HP_POP(mutex->trylock, HP_mutex_trylock) }, + { HP_POP(mutex->unlock, HP_mutex_unlock) }, + { HP_POP(mutex->cond_create, HP_mutex_cond_create) }, + { HP_POP(mutex->cond_destroy, HP_mutex_cond_destroy) }, + { HP_POP(mutex->cond_wait, HP_mutex_cond_wait) }, + { HP_POP(mutex->cond_signal, HP_mutex_cond_signal) }, + { HP_POP(mutex->cond_broadcast, HP_mutex_cond_broadcast) }, /* nullpo_interface */ { HP_POP(nullpo->assert_report, HP_nullpo_assert_report) }, /* pincode_interface */ |