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
What I want to probe is MongoDB server 'ServiceEntryPointMongod::handleRequest' function. 'this' pointer should be the first argument of the function. However, I used bcc 'PT_REGS_PARM1' macro to get the first argument of the function and found that it was not 'this' pointer. Finally, I got the 'this' pointer by the 'PT_REGS_PARM1' macro successfully as showed below.
And my question is what is the first argument I got and why 'this' pointer is the second argument.
The text was updated successfully, but these errors were encountered:
What I want to probe is MongoDB server 'ServiceEntryPointMongod::handleRequest' function. 'this' pointer should be the first argument of the function. However, I used bcc 'PT_REGS_PARM1' macro to get the first argument of the function and found that it was not 'this' pointer. Finally, I got the 'this' pointer by the 'PT_REGS_PARM1' macro successfully as showed below.
And my question is what is the first argument I got and why 'this' pointer is the second argument.
The text was updated successfully, but these errors were encountered: