银河麒麟服务器系统中mysql数据库使用gdb内存回收报错问题处理

银河麒麟服务器系统中mysql数据库使用gdb内存回收报错问题处理

    • [一 系统环境](#一 系统环境)
    • [二 问题现象](#二 问题现象)
    • [三 分析原因](#三 分析原因)
    • [四 解决方法](#四 解决方法)

问题描述:在系统中执行回收命令(gdb --batch --pid pidof mysqld --ex 'call malloc_trim(0)';)报错'malloc_trim' has unknown return type; cast the call to its declared return type

一 系统环境

bash 复制代码
[root@localhost ~]# nkvers 
############## Kylin Linux Version #################
Release:
Kylin Linux Advanced Server release V10 (Sword)

Kernel:
4.19.90-24.4.v2101.ky10.x86_64

Build:
Kylin Linux Advanced Server
release V10 (SP2) /(Sword)-x86_64-Build09/20210524
#################################################

二 问题现象

bash 复制代码
[root@localhost ~]# gdb --batch --pid `pidof mysqld` --ex 'call malloc_trim(0)';
[New LWP 2916]
[New LWP 2917]
[New LWP 2918]
[New LWP 2919]
[New LWP 2920]
[New LWP 2921]
[New LWP 2922]
[New LWP 2923]
[New LWP 2924]
[New LWP 2925]
[New LWP 2926]
[New LWP 2927]
[New LWP 2929]
[New LWP 2930]
[New LWP 2931]
[New LWP 2932]
[New LWP 2933]
[New LWP 2934]
[New LWP 2935]
[New LWP 2936]
[New LWP 2937]
[New LWP 2938]
[New LWP 2939]
[New LWP 2940]
[New LWP 2941]
[New LWP 2942]
[New LWP 2943]
[New LWP 2944]
[New LWP 2945]

warning: Expected absolute pathname for libpthread in the inferior, but got target:/usr/lib64/libpthread.so.0.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.

warning: Expected absolute pathname for libpthread in the inferior, but got target:/usr/lib64/libpthread.so.0.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
0x00007fb2130629d9 in poll () from target:/usr/lib64/libc.so.6
'malloc_trim' has unknown return type; cast the call to its declared return type
[Inferior 1 (process 2914) detached]

三 分析原因

在C语言中,malloc_trim函数通常没有返回值,也就是说,它的返回类型是void。因此,malloc_trim函数不应该被强制转换为int类型。这样的转换在标准C语言中是没有意义的,因为malloc_trim不会返回一个整数值。

然而,一些特定的C库实现(如GNU C库)可能会为malloc_trim提供一个非标准的返回值,例如返回释放的内存字节数。在这种情况下,将malloc_trim的返回值强制转换为int可能是为了与这些非标准实现兼容。

总的来说,call (int)malloc_trim(0)call malloc_trim(0)在标准C语言中的行为应该是相同的,因为malloc_trim的标准定义不包含返回值。但是,如果您的代码依赖于某个特定C库的非标准扩展,那么这两种调用方式可能会有所不同:

  • call (int)malloc_trim(0):这种调用方式尝试将malloc_trim的任何返回值(如果有)强制转换为int类型。如果malloc_trim实际上返回了一个整数值,那么这个值将被转换为int类型。
  • call malloc_trim(0):这种调用方式忽略了malloc_trim的任何返回值。这是标准C语言中推荐的调用方式,因为它遵循了malloc_trim的标准定义。

需要将malloc_trim函数指定为int整数类型

四 解决方法

将gdb --batch --pid pidof mysqld --ex 'call malloc_trim(0)';命令修改为gdb --batch --pid pidof mysqld --ex 'call (int)malloc_trim(0)';

bash 复制代码
[root@localhost ~]# gdb --batch --pid `pidof mysqld` --ex 'call (int)malloc_trim(0)';
[New LWP 2916]
[New LWP 2917]
[New LWP 2918]
[New LWP 2919]
[New LWP 2920]
[New LWP 2921]
[New LWP 2922]
[New LWP 2923]
[New LWP 2924]
[New LWP 2925]
[New LWP 2926]
[New LWP 2927]
[New LWP 2929]
[New LWP 2930]
[New LWP 2931]
[New LWP 2932]
[New LWP 2933]
[New LWP 2934]
[New LWP 2935]
[New LWP 2936]
[New LWP 2937]
[New LWP 2938]
[New LWP 2939]
[New LWP 2940]
[New LWP 2941]
[New LWP 2942]
[New LWP 2943]
[New LWP 2944]
[New LWP 2945]

warning: Expected absolute pathname for libpthread in the inferior, but got target:/usr/lib64/libpthread.so.0.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.

warning: Expected absolute pathname for libpthread in the inferior, but got target:/usr/lib64/libpthread.so.0.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
0x00007fb2130629d9 in poll () from target:/usr/lib64/libc.so.6
$1 = 1
[Inferior 1 (process 2914) detached]
相关推荐
2501_941805936 小时前
深入解析现代多语言后端架构设计:Python、Java、C++与Go在高性能服务中的实践
运维
F***E2396 小时前
如何安装配置Goland并使用固定公网地址SSH远程连接本地服务器
运维·服务器·ssh
序属秋秋秋6 小时前
《Linux系统编程之进程环境》【环境变量】
linux·运维·服务器·c语言·c++·操作系统·系统编程
Token_w7 小时前
openGauss:全密态数据库的金融级安全实践
数据库·安全·金融
合作小小程序员小小店7 小时前
图书管理系统,基于winform+sql sever,开发语言c#,数据库mysql
开发语言·数据库·sql·microsoft·c#
ss2737 小时前
020:共享锁深度解析:从AQS原理到高并发实践
数据库·redis·缓存
云边有个稻草人7 小时前
手机也能控 Linux?Cpolar+JuiceSSH 搞定内网远程
运维·服务器·cpolar
字节拾光录7 小时前
手机号存储避坑指南:从20亿级数据库实践看,为什么VARCHAR才是终极答案
java·数据库·oracle
Altair12317 小时前
nginx的https的搭建
运维·网络·nginx·云计算
云计算练习生7 小时前
linux shell编程实战 10 Git工具详解与运维场景实战
linux·运维·git