Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/candidate-9.8.x'
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Halliday <[email protected]>

# Conflicts:
#	helm/hpcc/Chart.yaml
#	helm/hpcc/templates/_helpers.tpl
#	version.cmake
  • Loading branch information
ghalliday committed Oct 22, 2024
2 parents 00cb373 + bd5e926 commit ea449dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion system/include/platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ typedef unsigned __int64 hash64_t;
typedef unsigned __int64 __uint64;
typedef __uint64 offset_t;
typedef unsigned char byte;
typedef __int64 cycle_t;
typedef __uint64 cycle_t; // This must be unsigned to avoid integer overflow issues when subtracting
typedef unsigned __int64 timestamp_type;

// BUILD_TAG not needed here anymore - defined in build_tag.h
Expand Down
4 changes: 2 additions & 2 deletions system/jlib/jdebug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -502,8 +502,8 @@ class TimeSectionInfo : public MappingBase
unsigned getCount() const { return count; }

StringAttr scope;
__int64 totalcycles;
__int64 maxcycles;
cycle_t totalcycles;
cycle_t maxcycles;
unsigned count;
};

Expand Down

0 comments on commit ea449dc

Please sign in to comment.