Project

General

Profile

Actions

Feature #357

open

Add function pointer dereferencing primitive pointcut

Added by Evgeny Novikov over 13 years ago. Updated about 8 years ago.

Status:
Open
Priority:
High
Category:
Pointcuts matching
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);
}

Actions

Also available in: Atom PDF