+2020-11-11 Luis Machado <luis.machado@arm.com>
+
+ * capability.cc (capability::to_str): Rename "attributes" to
+ "permissions".
+
2020-11-11 Luis Machado <luis.machado@arm.com>
* tdesc.cc (tdesc_predefined_types): Update type names for
capability::to_str (void)
{
/* The printing format is the following:
- {tag = %d, address = 0x%016x, attributes = {[%s], otype = 0x%04x,
+ {tag = %d, address = 0x%016x, permissions = {[%s], otype = 0x%04x,
[range = [0x%016x - 0x%016x)}}
*/
std::string cap_str ("");
/* Assemble the capability string. */
cap_str += "{tag = " + tag_str + ", address = " + val_str + ", "
- + "attributes = {" + perm_str + " ";
+ + "permissions = {" + perm_str + " ";
if (is_sealed ())
cap_str += "otype = " + otype_str + ", ";