4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 16:33:31 +08:00

[timer] use int pointer to interpret notify func in sevp

This commit is contained in:
wangxiaoyao 2023-03-01 16:30:49 +08:00 committed by guo
parent 31bfc855c1
commit d1ed1c06cb

View File

@ -1348,7 +1348,7 @@ rt_err_t sys_timer_create(clockid_t clockid, struct sigevent *restrict sevp, tim
lwp_get_from_user(&timerid_k, (void *)timerid, sizeof(timerid_k));
/* to protect unsafe implementation in current rt-smart toolchain */
RT_ASSERT(((struct ksigevent *)sevp)->sigev_tid == (rt_ubase_t)sevp_k.sigev_notify_function);
RT_ASSERT(((struct ksigevent *)sevp)->sigev_tid == *(int *)(&sevp_k.sigev_notify_function));
ret = timer_create(clockid, &sevp_k, &timerid_k);