Skip to content

Commit

Permalink
Use legacy sort to avoid possible fault from slog2 library. Update jar.
Browse files Browse the repository at this point in the history
Former-commit-id: d6a2e1cb15b9f060239282726b86b0e18ec9d251
  • Loading branch information
wspear committed Nov 4, 2021
1 parent 30c4eed commit 26c94b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Binary file modified tools/src/tau2slog2/bin/tau2slog2.jar
Binary file not shown.
3 changes: 3 additions & 0 deletions tools/src/tau2slog2/src/edu/uoregon/tau/Tau2Slog2.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ public static void main( String[] args )
slog_outs.setTreeLeafByteSize( leaf_bytesize );
if ( num_children_per_node > 0 )
slog_outs.setNumChildrenPerNode( num_children_per_node );

//Bypasses error detected by newer java implementations
System.setProperty("java.util.Arrays.useLegacyMergeSort", "true");

treetrunk = new TreeTrunk( slog_outs, shadefs );
/* */ Date time2 = new Date();
Expand Down

0 comments on commit 26c94b9

Please sign in to comment.