in reply to Reading memory of a different process
No, in general, it's not possible, because the memory address belongs to memory that does not belong to the current process (perl) and thus is not readable for Perl. You can try to get at a pointer to any arbitrary memory adress via Devel::Peek or Pointer, but the operating system will not let you see the memory of the other program, especially when the other program is not running anymore.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Reading memory of a different process
by opensourcer (Monk) on Jan 31, 2005 at 13:56 UTC | |
by Corion (Patriarch) on Jan 31, 2005 at 14:01 UTC |