linux中malloc程序,如何在Linux中重新定义malloc()以用于C new

我为我定义了mem_malloc()和mem_free(),我想用它们来替换malloc()和free(),从而替换C的new和delete.

我将它们定义如下:

extern "C" {

extern void *mem_malloc(size_t);

extern void mem_free(void *);

void *

malloc(size_t size) {

return mem_malloc(size);

}

void

free(void *memory) {

mem_free(memory);

}

}

但是,我收到两个链接错误:

[user@machine test]$g++ -m32 -pthread main.cpp -static libmemnmf-O.a

/usr/lib/../lib/libc.a(malloc.o): In function `free':

(.text+0x153c): multiple definition of `free'

/tmp/ccD2Mgln.o:main.cpp:(.text+0x842): first defined here

/usr/lib/../lib/libc.a(malloc.o): In function `malloc':

(.text+0x3084): multiple definition of `malloc'

/tmp/ccD2Mgln.o:main.cpp:(.text+0x856): first defined here

libmemnmf-O.a(mem_debug.o): In function `mem_init_debug_routines':

mem_debug.c:(.text+0x83c): undefined reference to `dlopen'

mem_debug.c:(.text+0x89d): undefined reference to `dlsym'

mem_debug.c:(.text+0xa03): undefined reference to `dlclose'

mem_debug.c:(.text+0xa24): undefined reference to `dlclose'

mem_debug.c:(.text+0xa2e): undefined reference to `dlerror'

collect2: ld returned 1 exit status

1)如何让多重定义的malloc()和free()错误消失,只是采用我的定义,而不是内置的?

2)什么图书馆提供dlopen()和朋友?我希望这可以内置,但它们是未定义的.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值