Function: stop

C Prototype

aclError aclprofStop(const aclprofConfig *profilerConfig)

Python Function

ret = acl.prof.stop(profiler_config)

Function Usage

Stops profile data collection.

Input Description

profiler_config: int, pointer address for stopping profiling.

Must be the same as aclprofConfig passed to the acl.prof.start call.

Return Value

ret: int, error code.

Restrictions

Use this API together with the acl.prof.start API. Call acl.prof.start first and then acl.prof.stop.

Reference

For the API call example, see Profile Data Collection.