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

Re^3: C-like Pointers

by snoopy (Curate)
on Nov 16, 2009 at 05:11 UTC ( [id://807369]=note: print w/replies, xml ) Need Help??


in reply to Re^2: C-like Pointers
in thread C-like Pointers

In short words, I want to do (void*)0x78000000 in Perl, a pointer to a address defiend by myself (without the help of C :-P). I've searched CPAN for XS and pointers but did not found anything related to my problem

Did you come across Sys::Mmap's hardwire() method in your travels?

Just reading the synopsis for this function:

       hardwire(VARIABLE, ADDRESS, LENGTH)
           Specifies the address in memory of a variable, possibly within a
           region you've "mmap()"ed another variable to. You must use the same
           precautions to keep the variable from being reallocated, and use
           "substr()" with an exact length. If you "munmap()" a region that a
           "hardwire()"ed variable lives in, the "hardwire()"ed variable will
           not automatically be "undef"ed. You must do this manually.
..and thought it just might be of use. Maybe try:
use Sys::Mmap; # ... Sys::Mmap::hardwire($address, 0x78000000, $kernel_size);

Replies are listed 'Best First'.
Re^4: C-like Pointers
by DerHartmut (Novice) on Nov 16, 2009 at 17:34 UTC
    Great!

    That's extactly that I searched for. Thank very very very much! It does work now :D

    And many thanks to the others for their answers!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (2)
As of 2024-04-20 03:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found