Skip to content

Commit

Permalink
[CBRD-24644] 64bit statdump output for CMS the clients (CUBRID#4084)
Browse files Browse the repository at this point in the history
64bit statdump output for CMS clients
  • Loading branch information
kisoo-han authored Feb 2, 2023
1 parent dd1ab3c commit 6ba7945
Show file tree
Hide file tree
Showing 3 changed files with 207 additions and 207 deletions.
2 changes: 1 addition & 1 deletion cubridmanager
4 changes: 2 additions & 2 deletions src/cm_common/cm_mem_cpu_stat.c
Original file line number Diff line number Diff line change
Expand Up @@ -1271,9 +1271,9 @@ extract_db_exec_stat (FILE * fp, const char *dbname, T_CM_ERROR * err_buf)
while (fgets (linebuf, sizeof (linebuf), fp))
{
unsigned int *member_ptr;
unsigned int prop_val;
uint64_t prop_val;
memset (prop_name, 0, sizeof (prop_name));
sscanf (linebuf, "%99s%*s%u", prop_name, &prop_val);
sscanf (linebuf, "%99s%*s%llu", prop_name, &prop_val);
member_ptr = get_statdump_member_ptr (stat, prop_name);
if (!member_ptr)
continue;
Expand Down
Loading

0 comments on commit 6ba7945

Please sign in to comment.