为什么这个 JS 片段会让 gnome shell 爆炸?
我正在开发一个 gnome shell 扩展,它应该执行一个 Python 程序。它包括:
GLib.spawn_sync(null, ['python', '-c', '"import os"'], null, 4, null)
即使我在镜子中运行它,这条线也会使整个外壳崩溃。
I'm developing a gnome shell extensions, which should execute a Python program. It includes:
GLib.spawn_sync(null, ['python', '-c', '"import os"'], null, 4, null)
This line make the entire shell crash, even if I run it in the looking glass.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应该从 shell 进行
spawn_sync
进程。这意味着 shell 将锁定,直到您的进程返回。由于某种原因,外壳不能容忍这种情况并死亡。使用spawn_async,它会正常工作。You should not
spawn_sync
processes from the shell. This means that the shell will lock up until your process returns. For some reason, the shell does not tolerate this and perish. Usespawn_async
and it will work fine.