Ethereal-cvs: [Ethereal-cvs] cvs commit: ethereal/epan/dfilter dfvm.c

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Ronnie Sahlberg <sahlberg@xxxxxxxxxxxxxxxxx>
Date: Tue, 25 Nov 2003 07:20:35 -0600 (CST)
sahlberg    2003/11/25 07:20:35 CST

  Modified files:
    epan/dfilter         dfvm.c 
  Log:
  fvalue_free() is one of the most called functions.
  This function is also very small, so small that teh overhead for the actual function call and return is likely to be a significant part
  of its execution time.
  
  change it into a macro and make it thus slightly faster by eliminating the function call overhead.
  
  Revision  Changes    Path
  1.11      +2 -2      ethereal/epan/dfilter/dfvm.c