Actions
Feature #357
openAdd function pointer dereferencing primitive pointcut
Start date:
08/05/2010
Due date:
% Done:
0%
Estimated time:
Published in build:
Description
One of example is:
int f(int a, int b) { return (a + b); } int g(void) { typedef int (*f_ptr)(void); f_ptr func; func = f; return func (10, 20); }
Updated by Evgeny Novikov about 12 years ago
- Project changed from Linux Driver Verification to C Instrumentation Framework
- Category deleted (
15)
Updated by Evgeny Novikov almost 9 years ago
- Priority changed from Normal to High
As far as I know Ilya Schepetkov has already implement some preliminary support of this. I will consider it and fix if required.
Actions