Skip to content

Commit

Permalink
Increase String size for tbinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
berkayurun committed Aug 10, 2023
1 parent f7ff508 commit bc29f2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hdf5logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ class translation_block_table(tables.IsDescription):
size = tables.UInt64Col()
ins_count = tables.UInt64Col()
num_exec = tables.UInt64Col()
assembler = tables.StringCol(1000)
assembler = tables.StringCol(3000)


class translation_block_faulted_table(tables.IsDescription):
faultaddress = tables.UInt64Col()
assembler = tables.StringCol(1000)
assembler = tables.StringCol(3000)


class translation_block_exec_table(tables.IsDescription):
Expand Down

0 comments on commit bc29f2e

Please sign in to comment.