There's a few things to puzzle over here:

Similar to your earlier attempt, I don't see anything that offers instruction on what findEAsForGivenRAAndContext() actually does.
I can see the data types of its arguments, and the data type that it returns, but that's about it.
Perhaps this somehow accounts for the error message about a (non-existent) "TM_TranslationAdressesPtr" package - but I really don't know how that hitherto unmentioned package earns a mention.

The u64 typemapping you've done implies that your perl's IV/UV is the same size as as a signed/unsigned long long int - so I wonder why such typemapping is necessary.
Is it just so that you can have the "u64" symbol as an alias for unsigned long long int ?

AFAICT, when $raAddress gets passed to findEAsForGivenRAAndContext(), instead of having assigned it as:
my $raAddress=Math::BigInt->new("0x00000000_01F560C0"); it might just as well have been assigned as: my $raAddress=0x01F560C0;
I would probably rewrite findEAsForGivenRAAndContext() so that it returns the 2 u64 values - such that instead of coding (in perl):
my $result=trans::findEAsForGivenRAAndContext($raAddress, $lpid, $pid) +;
one codes it as:
my @result=trans::findEAsForGivenRAAndContext($raAddress, $lpid, $pid) +; print $result[0]; # addressCount
But there are other ways, and perhaps I'm not looking at it right.

Cheers,
Rob

In reply to Re: perlXS - missing object methods by syphilis
in thread perlXS - missing object methods by kopolov

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.