Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^7: How get PV address?

by dave_the_m (Monsignor)
on Aug 06, 2019 at 10:03 UTC ( [id://11104024]=note: print w/replies, xml ) Need Help??


in reply to Re^6: How get PV address?
in thread How get PV address?

I don't understand why you are now talking about sv_setnv(): this doesn't appear in the typemap you showed above.

The standard typemap for outputting integer values will do either sv_setiv($arg, (IV)$var) or sv_setuv($arg, (UV)$var) depending on whether the integer type is signed or not. The IV or UV types are usually defined as being the largest integer type that the compiler supports: they're large enough to hold a pointer, and often larger than a plain int (8 bytes versus 4 bytes).

Dave.

Replies are listed 'Best First'.
Re^8: How get PV address?
by xiaoyafeng (Deacon) on Aug 06, 2019 at 12:55 UTC

    I don't understand why you are now talking about sv_setnv(): this doesn't appear in the typemap you showed above.

    Sorry, I mean sv_setuv.

    The standard typemap for outputting integer values will do either sv_setiv($arg, (IV)$var) or sv_setuv($arg, (UV)$var) depending on whether the integer type is signed or not. The IV or UV types are usually defined as being the largest integer type that the compiler supports: they're large enough to hold a pointer, and often larger than a plain int (8 bytes versus 4 bytes).

    Oh, I fully understand it! Thanks so much for your patient answer!





    I am trying to improve my English skills, if you see a mistake please feel free to reply or /msg me a correction

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11104024]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (8)
As of 2024-03-28 18:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found