英文: GoLang CGO file handles 问题 我正在使用一个原生的Linux C二进制文件,其中有一个相当昂贵的初始化调用,我希望在应用程序启动时执行一次。这个调用应该在内部打开一些文...
无法从Go语言访问的C对象的编组
英文: Marshalling C objects that cannot be accessed from Go 问题 有一些C对象,比如包含位字段的联合体和结构体,以及与Go的ABI对齐方式不同的...
Go在使用time.Tick时会导致OpenGL崩溃,但使用time.After则不会。
英文: Go causes OpenGL to segfault with time.Tick but not time.After 问题 我有以下两个文件: bridge.go: package c...
通过从C调用的go函数的参数返回值。
英文: Returning values through the arguments of go function, which is called from C 问题 假设我们有一个Go函数,它对传...
how to open a new sqlite3 database using sqlite3.h and cgo?
英文: how to open a new sqlite3 database using sqlite3.h and cgo? 问题 我正在尝试通过C和cgo使用sqlite3(我知道Go有一个sql...
使用Go 1.2进行线程化的CGO
英文: Threaded CGO using Go 1.2 问题 编辑:这个问题是无意义的。我误读了提交的日期,它已经包含在现有版本的Go工具中。谢谢,James! 看起来即将发布的Go(1.3)将允...
What methods are there currently that allow you to call a Go function in C?
英文: What methods are there currently that allow you to call a Go function in C? 问题 我看到了很多不同的方法可以实现这个...
使用空结构体与CGO正确配合使用
英文: Using empty struct properly with CGO 问题 使用gssapi.h进行工作 struct gss_name_struct; typedef struct gs...
将C结构体翻译为Go结构体的好方法或推荐方法是什么?
英文: Good or recommended way to translate C struct to Go struct 问题 你好!根据你的描述,你正在使用cgo从Go语言开发库绑定。你想知道如...
golang cgo: 在执行过程中,libevent处理程序的值被设置为null。
英文: golang cgo: libevent handler values are set to null during execution 问题 我正在翻译以下内容: 我正在将这个C API(h...
28