- Timestamp:
- Mar 5, 2012, 5:19:48 PM (14 years ago)
- Location:
- branches/meh_branches/ppstack_test
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
psLib/src/sys/psMemory.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/meh_branches/ppstack_test
- Property svn:mergeinfo changed
-
branches/meh_branches/ppstack_test/psLib/src/sys/psMemory.h
r31660 r33415 367 367 bool persistence ///< make check across all object even persistent ones 368 368 ); 369 int psMemCheckLeaks2( 370 psMemId id0, ///< don't list blocks with id < id0 371 psMemBlock ***array, ///< pointer to array of pointers to leaked blocks, or NULL 372 FILE * fd, ///< print list of leaks to fd (or NULL) 373 bool persistence, ///< make check across all object even persistent ones 374 int maxDisplayedLeaksCount ///< List at most maxDisplayedLeaksCount (-1 for all) 375 ); 369 376 #else // ifdef DOXYGEN 370 377 int p_psMemCheckLeaks( … … 375 382 psMemBlock ***array, ///< pointer to array of pointers to leaked blocks, or NULL 376 383 FILE * fd, ///< print list of leaks to fd (or NULL) 377 bool persistence ///< make check across all object even persistent ones 378 ); 379 #ifndef SWIG 384 bool persistence, ///< make check across all object even persistent ones 385 int maxDisplayedLeaksCount ///< List at most maxDisplayedLeaksCount (-1 for all) 386 ); 387 #ifndef SWIG 388 #define psMemCheckLeaks2(id0, array, fd, persistence, maxDisplayedLeaksCount) \ 389 p_psMemCheckLeaks(__FILE__, __LINE__, __func__, id0, array, fd, persistence, maxDisplayedLeaksCount) 380 390 #define psMemCheckLeaks(id0, array, fd, persistence) \ 381 p_psMemCheckLeaks(__FILE__, __LINE__, __func__, id0, array, fd, persistence )391 p_psMemCheckLeaks(__FILE__, __LINE__, __func__, id0, array, fd, persistence, 500) 382 392 #endif // ifndef SWIG 383 393 #endif // ifdef DOXYGEN
Note:
See TracChangeset
for help on using the changeset viewer.
