命令行信号量实用程序

发布于 2024-08-30 20:39:17 字数 248 浏览 9 评论 0原文

我想编写一个命令行实用程序,可用于同步不同控制台中的程序执行。

Console A: 
$ first_program && semaphore -signal

Console B:
$ semaphore -wait && second_program

第一个节目需要很长时间才能完成。只有当第一个程序完成后,第二个程序才能开始。

我需要哪个同步对象来实现这个?

I want to write a command line utility that can be used to synchronize the execution off programs in different consoles.

Console A: 
$ first_program && semaphore -signal

Console B:
$ semaphore -wait && second_program

The first program takes a long take to complete. The second program can only start when the first program has finished.

Which synchronization object do I need to implement this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

ˇ宁静的妩媚 2024-09-06 20:39:17

您不需要为此使用 Python。考虑到您使用的是 Unix,请尝试以下操作:

首先,为信号量创建一个管道。

mknod /tmp/semaphore p

然后,程序:

Console A:
$ first_program && echo a > /tmp/semaphore

Console B:
$ read < /tmp/semaphore && second_program

实际上,这个方法是双向的。读取将阻塞,直到有写入为止,反之亦然。

You don't need to use Python for this. Considering you are using Unix, try this:

First, create a pipe for the semaphore.

mknod /tmp/semaphore p

Then, the programs:

Console A:
$ first_program && echo a > /tmp/semaphore

Console B:
$ read < /tmp/semaphore && second_program

Actually, this method works both ways. The read will block until there is a write, and vice versa.

红颜悴 2024-09-06 20:39:17

如果它们位于同一台计算机上,第一个程序可以访问临时文件。

python 中有一个 Gamin 模块,它可以让你的第二个程序坐在那里等待,而不占用资源。这不是一个忙碌的等待,也不是做任何与睡眠或类似的事情。

If they're on the same machine the first program can touch a temporary file.

There is a Gamin module in python that will allow your second program to sit there and wait while not tying up resources. It isn't a busy wait, or doing anything with sleep or stuff like that.

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