Allocates a free array from the pool and associates it with the specified resource.
Only one array can be associated with one resource within a HashSet 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 array.
Returned value
KSS_GRANT if the array was allocated.
KSS_DENY in the following cases:
HashSet class object.Example
...
/* When the Server entity is started, an array from the pool of object S is associated with the entity handle */
execute dst=Server {
S.init {sid: dst_sid}
}
Page top