使用 FFI::ManagedStruct 时出现无效指针 (TypeError)

发布于 2024-12-28 19:32:40 字数 605 浏览 0 评论 0 原文

我正在使用 Ruby-FFI 编写一个库,并希望利用 FFI::ManagedStruct 提供的清理功能。

我正在替换例如 MyStruct < FFI::StructMyStruct FFI::ManagedStruct 并根据 def self.release(ptr) “nofollow”>文档。但是,现在运行我的代码时,出现此错误:

[...]autopointer.rb:68:in `initialize': Invalid pointer (TypeError)

当我尝试调用使用 Attach_function 声明的函数,并将 FFI::MemoryPointer 传递给相关结构时,就会发生这种情况。当使用FFI::Struct时,它工作得很好。

I am writing a library using Ruby-FFI, and want to take advantage of the cleanup functionality offered by FFI::ManagedStruct.

I am replacing e.g. MyStruct < FFI::Struct with MyStruct < FFI::ManagedStruct and adding def self.release(ptr) as per the documentation. However, when running my code now, I get this error:

[...]autopointer.rb:68:in `initialize': Invalid pointer (TypeError)

This happens where I try call a function declared with attach_function, passing a FFI::MemoryPointer to the struct in question. When using FFI::Struct, it works fine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文