Changeset 4071
- Timestamp:
- Jun 1, 2005, 11:08:49 AM (21 years ago)
- Location:
- trunk/doc/pslib
- Files:
-
- 2 edited
-
ChangeLogSDRS.tex (modified) (2 diffs)
-
psLibSDRS.tex (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/pslib/ChangeLogSDRS.tex
r4070 r4071 1 %%% $Id: ChangeLogSDRS.tex,v 1.11 2 2005-06-01 21:04:33jhoblitt Exp $1 %%% $Id: ChangeLogSDRS.tex,v 1.113 2005-06-01 21:08:49 jhoblitt Exp $ 2 2 3 3 \subsection{Changes from version 00 to version 01} … … 640 640 \item rename functions/datatypes to abv. ``allocate'' as ``alloc'' 641 641 \item rename functions/datatypes to abv. ``memory'' as ``mem'' 642 \item rename functions/datatypes to abv. ``function'' as ``func'' (not ``fcn'') 642 643 \item remove ``my'' from function parameters names 643 644 \item add \code{psComparePtrFunc} function pointer -
trunk/doc/pslib/psLibSDRS.tex
r4070 r4071 1 %%% $Id: psLibSDRS.tex,v 1.24 6 2005-06-01 21:04:33jhoblitt Exp $1 %%% $Id: psLibSDRS.tex,v 1.247 2005-06-01 21:08:49 jhoblitt Exp $ 2 2 \documentclass[panstarrs,spec]{panstarrs} 3 3 … … 333 333 struct psMemBlock* previousBlock; ///< previous block in allocation list 334 334 struct psMemBlock* nextBlock; ///< next block allocation list 335 psFreeF cn freeFcn;///< deallocator. If NULL, use generic deallocation.335 psFreeFunc freeFunc; ///< deallocator. If NULL, use generic deallocation. 336 336 size_t userMemorySize; ///< the size of the user-portion of the memory block 337 337 const psMemId id; ///< a unique ID for this allocation … … 344 344 } psMemBlock; 345 345 346 typedef void (*psFreeF cn)(void* ptr);346 typedef void (*psFreeFunc)(void* ptr); 347 347 typedef unsigned long psMemId; 348 348 typedef unsigned long psReferenceCount; … … 356 356 list. 357 357 358 The element \code{freeF cn} specifies the deallocator associated with a358 The element \code{freeFunc} specifies the deallocator associated with a 359 359 specific block of memory. If this element is \code{NULL}, the basic 360 360 deallocator is used and the memory block must not be a rich data … … 481 481 482 482 \begin{prototype} 483 void psMemSetDeallocator(psPtr ptr, psFreeF cn freeFcn);484 psFreeF cnpsMemGetDeallocator(const psPtr ptr);483 void psMemSetDeallocator(psPtr ptr, psFreeFunc freeFunc); 484 psFreeFunc psMemGetDeallocator(const psPtr ptr); 485 485 \end{prototype} 486 486
Note:
See TracChangeset
for help on using the changeset viewer.
