为什么这个 JS 片段会让 gnome shell 爆炸?

发布于 2024-12-25 11:29:49 字数 181 浏览 1 评论 0原文

我正在开发一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七婞 2025-01-01 11:29:49

您不应该从 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. Use spawn_async and it will work fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文