secure_point
secure_point — alters the security level on a point.
secure_point (symbol, security)
symbolThe point to alter, as a symbol.
securityThe new security level for this point.
This function alters the security level on a point in the DataHub instance.
If the current process security level is lower than the named point
(symbol), then the function returns nil, otherwise it returns
t. The initial security
level for a process is 0.
Gamma>init_ipc("spt","spq");tGamma>secure_point(#d,5);nilGamma>set_security(9);0Gamma>secure_point(#d,5);tGamma>secure_point(#d,12);nilGamma>set_security(15);9Gamma>secure_point(#d,12);tGamma>