Function: destroy_event
Applicability
|
Product |
Supported (√/x) |
|---|---|
|
|
√ |
|
|
√ |
|
|
√ |
|
|
√ |
|
|
√ |
Function Usage
Destroys an event. This API can be called to destroy an event before the event is complete. In this case, this API does not block the thread until the event is complete. Event-related resources are automatically released when the event is complete.
Prototype
- C Prototype
1aclError aclrtDestroyEvent(aclrtEvent event)
- Python Function
1ret = acl.rt.destroy_event(event)
Parameter Description
|
Parameter |
Description |
|---|---|
|
event |
Int, pointer address of the event to be destroyed. |
Return Value Description
|
Return Value |
Description |
|---|---|
|
ret |
Int, error code: 0 on success; else, failure. |
Restrictions
When calling the acl.rt.destroy_event API to destroy an event, ensure that the event is not being used by other APIs.