痛饮+ tcl + c++ (内存管理)
我在 tcl 中有一个过程,它再次使用 swig 创建的接口调用 C++ 方法。该过程返回一个指针列表。我使用 tcl 检查列表中单个元素的所有权,
[lindex $listname 0] cget -thisown
它返回 0 而不是 1。
I have a procedure in tcl that again call a c++ method using interface created by swig. The procedure returns a list of pointers. I checked ownership for a single element in the List in tcl using
[lindex $listname 0] cget -thisown
it returns 0 instead of 1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 有关内存管理的 SWIG 文档,指针不属于(SWIG 默认绑定到)Tcl。如果 SWIG 出错,请使用
-acquire
/-disown
操作来纠正它。例如:小心点!内存管理错误会导致混乱的崩溃或内存泄漏。
According to the SWIG documentation on memory management, pointers aren't owned by (the SWIG binding to) Tcl by default. If SWIG has got it wrong, use the
-acquire
/-disown
operations to correct it. For example:Be careful! Getting memory management wrong will lead to confusing crashes or memory leaks.