~ubuntu-branches/ubuntu/trusty/pdl/trusty-proposed

« back to all changes in this revision

Viewing changes to Basic/Core/pdlcore.h.PL

  • Committer: Package Import Robot
  • Author(s): Julian Taylor
  • Date: 2012-06-09 15:36:15 UTC
  • mfrom: (2.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20120609153615-9btghuyapev3n722
Tags: 1:2.4.11-4ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - debian/perldl.conf: Enabled bad-val as NAN

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
# version 7 introduced for some changes to function prototypes
22
22
#   for pthreading (i.e. multi-threading) capabilities
23
23
# version 8 for beginning support for >2GiB piddles
 
24
# version 9 for STRLEN/Size_t/Off_t for mmap delete magic
24
25
#
25
26
use vars qw( $pdl_core_version );
26
27
$pdl_core_version = 8;
308
309
void (*freethreadloop)(pdl_thread *thread);
309
310
void (*thread_create_parameter)(pdl_thread *thread,int j,int *dims,
310
311
                                int temp);
311
 
void (*add_deletedata_magic) (pdl *it,void (*func)(pdl *, int param), int param); /* Automagic destructor */
 
312
void (*add_deletedata_magic) (pdl *it,void (*func)(pdl *, Size_t param), Size_t param); /* Automagic destructor */
312
313
 
313
314
/* XXX NOT YET IMPLEMENTED */
314
315
void (*setdims_careful)(pdl *pdl);