From 3d39ffd976089c514b5fa62661ab2c2b009a712e Mon Sep 17 00:00:00 2001 From: William Cohen Date: Mon, 29 Mar 2010 11:25:04 -0400 Subject: PR4105 Support up to 9 (up from 5) array indices documentation. --- doc/SystemTap_Beginners_Guide/en-US/Arrays.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/SystemTap_Beginners_Guide/en-US/Arrays.xml b/doc/SystemTap_Beginners_Guide/en-US/Arrays.xml index 3d3dec01..140000a8 100644 --- a/doc/SystemTap_Beginners_Guide/en-US/Arrays.xml +++ b/doc/SystemTap_Beginners_Guide/en-US/Arrays.xml @@ -161,7 +161,7 @@ foo["harry"] = 25 -You can specify up to 5 index expressons in an array statement, each one delimited by a comma (,). This is useful if you wish to have a key that contains multiple pieces of information. The following line from uses 5 elements for the key: process ID, executable name, user ID, parent process ID, and string "W". It associates the value of devname with that key. +You can specify up to nine index expressons in an array statement, each one delimited by a comma (,). This is useful if you wish to have a key that contains multiple pieces of information. The following line from uses 5 elements for the key: process ID, executable name, user ID, parent process ID, and string "W". It associates the value of devname with that key. device[pid(),execname(),uid(),ppid(),"W"] = devname -- cgit