Search:

Type: Posts; User: Daper

Search: Search took 0.01 seconds.

  1. So your code that changes the pointer should look...

    So your code that changes the pointer should look like:



    void change(int **x, int **y)
    {
    *x=*y;
    }

    // ...
  2. Replies
    7
    Views
    22,186

    My proposition is to use shared memory: one...

    My proposition is to use shared memory: one process writes to it and the other read without any copying. You can use pipes as a synchronization mechanism if you need to, but message will not be...
Results 1 to 2 of 2