程序之间的共享内存和通信
我读到了这个: python singleton into multiprocessing 但我没有找到问题的解决方案。我必须一次多次运行同一个程序(而不是进程)。程序在相同的电子设备中运行。我必须同步这个程序。目前只有一个程序可以使用设备。
您对我如何解决这个问题有什么建议吗?
I read this: python singleton into multiprocessing but I didn't find the solution of my problem. I have to run the same program (not process) many times in one time. Programs work in the same electronic devices. I must synchronized this programs. Only one program can use device in the moment.
Have you got any suggestions how I can resolve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在文件系统中使用锁定文件。
You could use lockfiles in the filesystem.