You can find a discussion of PSS in the error tracker
Here is Igor's snippet on how to use ProcessSpecificVariables:
Suppose MyProcessSpecificVar is a subclass of ProcessSpecificVariable.
Then you can do:
[ MyProcessSpecificVar value: foo. ] fork. [ MyProcessSpecificVar value. ] fork.
etc., i.e. just like the old implementation does.
But with the new implementation, you can also use instances of it, so you do not need to create a new class for each var type that you can use:
mykey := MyProcessSpecificVar new. [ mykey value ] fork. [ mykey value: 10 ] fork.
source share