Sharing memory between processes


PAW version:2.12/22
Description
The following program didn't work. It could not access the shared memory area named 'ASA' created by an other process.

      Program shm_read
      Common /PAWC/ A(100000)
      Call Hlimit(100000)
      Call Hlimap(0,'ASA') 
      End
Fixed in: HBOOK 4.27/01
Workaround
To make it work the shared memory name had to be put in a character variable, ie:
      Program shm_read
      Common /PAWC/ A(100000)
      Character*8 C
      Call Hlimit(100000)
      C = 'ASA' 
      Call Hlimap(0,C)
      End


Release NotesKnown bugsFAQsContributionsTutorialReference manualDown loadMiscellaneous

Paw.Support@cern.ch