You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I read this code, I found that l1_monitorall(l1) is executed in l1_prepare(); this is very strange? l1_prepare() seems to initialize variables and allocate memory. I think it might be some small mistake.
Because there is such a statement in the syncPrimeProbe() function:
if (cachelevel == 1)
lx = (lxpp_t)l1_prepare(NULL);
else if (cachelevel == 2)
lx = (lxpp_t)l2_prepare(NULL, NULL);
lx_monitorall(lx);
It can be seen that after executing the l1_prepare function, the lx_monitorall() function is called. This means that lx_monitorall should not be included in the l1_prepare function, right?
Thanks!
The text was updated successfully, but these errors were encountered:
Mastik/src/l1.c
Line 97 in fea5ad2
When I read this code, I found that l1_monitorall(l1) is executed in l1_prepare(); this is very strange? l1_prepare() seems to initialize variables and allocate memory. I think it might be some small mistake.
Because there is such a statement in the syncPrimeProbe() function:
It can be seen that after executing the l1_prepare function, the lx_monitorall() function is called. This means that lx_monitorall should not be included in the l1_prepare function, right?
Thanks!
The text was updated successfully, but these errors were encountered: