Function: mem_set_pid_to_shareable_handle
Applicability
Product |
Supported (√/x) |
|---|---|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
Function Usage
Sets the trustlist of processes that can share the memory. Only the processes configured with the trustlist can use the shareable handle exported by acl.rt.mem_export_to_shareable_handle.
This API must work with other APIs to implement memory sharing. For details, see the description of acl.rt.mem_export_to_shareable_handle.
Prototype
- C Prototype
1aclError aclrtMemSetPidToShareableHandle(uint64_t shareableHandle, int32_t *pid, size_t pidNum)
- Python Function
1ret = acl.rt.mem_set_pid_to_shareable_handle(shareable_handle, pid)
Parameter Description
Parameter |
Description |
|---|---|
shareable_handle |
Int, shareable handle exported through the acl.rt.mem_export_to_shareable_handle API. |
pid |
List, array for storing trustlisted process IDs. You can call acl.rt.device_get_bare_tgid to obtain the process ID. In the Docker scenario, the process ID on the physical machine is obtained. In the non-Docker scenario, the process ID is obtained. |
Return Value Description
Return Value |
Description |
|---|---|
ret |
Int, error code: 0 on success; else, failure. |
Restrictions
This API is used to set the process trustlist while calling the aclrtMemExportToShareableHandle API.
This API is not supported in the Ascend RC form.