I have a program like
int main()
{
char *ptr = malloc(2);
free(ptr);
}
So, I just want to keep track of all the function calls occurring inside the program, before the system call
like
malloc
|____ libc( sme_fn)
|
|__sme_system_call
Could you talk about this?
Dhyan source
share