Allocates a free dictionary from the pool and associates it with the specified resource.
The init policy sets the values of elements in the current copy and working copy to their default values.
Only one dictionary can be associated with one resource within a StaticMap class object.
Type: rule policy.
Syntax
init {sid: Handle}
In this case:
Handle refers to the handle of the resource that will be associated with the dictionary.
Returned value
KSS_GRANT if the dictionary is allocated.
KSS_DENY in the following cases:
StaticMap class object.Example
...
/* When the Server entity is started, a dictionary from the pool of object M is associated with the entity handle */
execute dst=Server {
M.init {sid: dst_sid}
}
Page top