inotify_add_watch 失败并显示 errno ESUCCESS
在 Linux 2.6.16 上,inotify_add_watch
失败并将 errno 设置为ESUCCESS
(0
) 如果路径不存在。这是在哪里记录的?
On Linux 2.6.16, inotify_add_watch
fails and sets errno to ESUCCESS
(0
) if the path does not exist. Where is this documented?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的
ctypes
包装器中存在错误,并且errno
未保存。解决方案是将use_errno=True
传递给 <代码>CFUNCTYPE。There was an error in my
ctypes
wrapper, anderrno
was not being saved. The solution is to passuse_errno=True
toCFUNCTYPE
.