Glib 的目的 - g_io_channel_unix_new
有人能告诉我这个功能是做什么的吗?
g_io_channel_unix_new
Gnome 站点具有它接受文件描述符作为参数并创建一个通道。我的问题是,既然我已经创建了文件/管道(与 fd 关联),它到底做了什么?
Could some one tell me what does this function do?
g_io_channel_unix_new
Gnome site has that It takes in a file descriptor as an argument and creates a channel. My question is what exactly does it do since i already have created the file/pipe (associated with fd)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有文件描述符但想使用 GLib 通道系统,则可以使用此函数从文件描述符获取通道。
If you have a file descriptor but want to use the GLib channel system instead, this is the function you use to get a channel from the file descriptor.