进程之间的数据
如果代码在其自己的进程中运行并且包含属于另一个进程的 .h 文件或 corelogic.c,该怎么办?
我有一个进程运行一堆代码,其中包括在另一个进程中运行的模块的标头。
进程 1 中的代码调用进程 2 中的代码并设置进程 2 中的代码中存在的变量是什么?
进程 1 是否拥有通过进程 2 模块中包含的 .h 文件连接的所有代码的副本?
那么变量有 2 个副本,每个进程 1 个?是否不可能从进程 1 设置进程 2 的变量?
What if code is run in its own process and it includes the .h file or corelogic.c which is part of another process.
I have one process running a bunch of code that includes the header of a module that is running in another process.
What is the code in process 1 calls the code in process 2 and sets variables that are present in code that is in process2?
Does process 1 have a copy of all the code connected via the .h file that it includes from process 2's modules?
So there is 2 copies of the variables, 1 for each process? Is it impossible to set process 2's variables from process 1?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的示例中的两个进程都有自己的每个数据点副本。为了让两个进程使用相同的内存(一个进程中的值更改会自动更改第二个进程中的值),您需要使用共享内存。在 Linux 中,您可以使用 shmget。
The two processes in your example have their own copy of every point of data. For your two processes to use the same memory (a change in value in one process automatically changes the value in the second process), you need to use shared memory. In Linux, you can use shmget.