doujiang7258 2013-11-21 17:49
浏览 253

在Go中使用可变参数C函数

I use shm_open with cgo. shm_open is defined with 3 arguments on Linux

int shm_open(const char *name, int oflag, mode_t mode);

whereas on OSX (Darwin) the 3rd mode flag is optional.

int shm_open(const char *name, int oflag, ...);

This creates a problem with CGO when trying to pass a mode on OSX. It complains that I pass 3 arguments, when only 2 are expected.

How can I work around this?

  • 写回答

1条回答 默认 最新

  • duanqiang2977 2013-11-21 17:55
    关注

    As usual the revelation comes 1 second after posting to SO. You can actually declare functions in the CGO comment section, so all you have to do is use a wrapper like this.

    /*
    #include <stdio.h>
    
    int shm_open2(const char *name, int oflag, mode_t mode) {
      return shm_open(name, oflag, mode);
    }
    */
    import "C"
    
    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!