Share memory between processes. Write a port daemon to continually read data and make it available via shared memory to any number of running applications. Easy To Use: Dim S as new CSharedMemory : S.sharedMemory "BlockName",1000 : S.memory="Shared Data" : Print S.memory
Inputs
Requires a string containing the user defined name for the shared memory block and the block size in bytes.
Returns
A string placed in the shared memory block can be retrieved by any application which knows the name of the shared memory block.
Side Effects
Shared memory blocks are created but never destroyed until the system is rebooted. Don't make more blocks than are required.