Revision history for Linux::Smaps::Tiny
0.11 2016-08-10 14:14:50
- Ever since 0.09 we haven't been using the XS version at all.
The reason for this was that due to our intaction with
Dist::Zilla we wouldn't define a $VERSION at BEGIN time, and
would default to 0.01 as a placeholder, DynaLoader would
silently fail to load it, and we'd always use the pure-perl
version.
- We now warn on compile-time if we can't load the XS version.
- Document how to use the pure-perl version directly, and make it
use the same API, for anyone who's interested in that, e.g. for
testing.
- Update the benchmark v.s. Linux::Smaps for its latest version &
ours. We're proportionally faster now than when I initially
released this.
0.10 2014-12-01 21:26:04
- Fix test failures under non-C locales, I was matching against
strerror(), just don't do that. See RT #95936.
0.09 2012-07-01 15:39:17
- CPAN RT #78029: fix a memory leak reported by Norbert
Buchmüller.
0.08 2011-07-20 19:20:57
- The 0.07 releas had a bugfix in the XS API. It now actually
works as documented when given an argument.
- Minor documentation nits.
0.07 2011-07-20 19:14:45
- Check errno right after fopen()
0.06 2011-04-03 19:18:44
- We now parse smaps with XS code, and fall back to PP if we can't
can_cc().
0.05 2011-03-30 10:27:33
- Add a =cut before the 1; in Tiny.pm
0.04 2011-03-30 09:24:57
- Update documentation
0.03 2011-03-29 12:52:03
- Add more information to our die() messages
0.02 2011-03-29 12:18:55
- Default to /proc/self/smaps, not /proc/$$/smaps
0.01 2011-03-29 09:16:11
- Initial buggy version