This is the mail archive of the
systemtap@sourceware.org
mailing list for the systemtap project.
seemingly out of place errors?
- From: Nicholas Murphy <halcyonic at gmail dot com>
- To: "systemtap at sourceware dot org" <systemtap at sourceware dot org>
- Date: Fri, 28 Sep 2012 12:46:55 -0400
- Subject: seemingly out of place errors?
I'm getting errors like the following:
ERROR: Array overflow, check MAXMAPENTRIES near identifier '$filename'
...for a line that is essentially aliasing a string variable:
filename = $filename
...and similarly:
ERROR: Array overflow, check MAXMAPENTRIES near identifier '$fd'
...for:
if ($fd == 0 && track_utility && !(pid() in redirected_stdin)) {
Admittedly in the latter case there is a check against an array, but it seems to be flagging "$fd" not the array check.
Is some array simply concurrently overflowing elsewhere? Why am I getting these particular errors?
Thanks,
Nick