I run perl on a 64bit machine. I try callbacks of death,
and pass some pointer to functions from (C to) perl back to C (using swig)....
but the swig SvIV()/SvUV()/SvRV() seems to force it back to 32 bits.
how annoying. are there any tricks I miss?
in perl
sub add_idle_callback($$)
{
printf("\nadd_idle_callback x%x , x%x \n", @_);
&idle_callback_run(@_); # calls
}
in .swg
%typemap(in) void (* cb)(void *) {
$1 = INT2PTR($1_ltype, SvUV($input));
printf(":: x%x to x%x\n", (unsigned long long)SvUV($input), $1);
if(SvGMAGICAL($input)) mg_get($input);
$1 = DPTR2FPTR($1_ltype, SvUV($input));
printf("::DPTR2FPTR x%x to x%x\n", SvIV($input), $1);
}
log
...
add_idle_callback x7ffb339f8040 , x0 <==== here in perl the pointer
+ to function is 64bits
...
<=========== but then swig- SvUV() or SvIV() cast it to 32 bits
:: x339f8040 to x339f8040
::DPTR2FPTR x339f8040 to x339f8040
....
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.