aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/ILifetimeManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/ILifetimeManager.h')
-rw-r--r--arm_compute/runtime/ILifetimeManager.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/arm_compute/runtime/ILifetimeManager.h b/arm_compute/runtime/ILifetimeManager.h
index f2e9b497c9..3684ddf8fb 100644
--- a/arm_compute/runtime/ILifetimeManager.h
+++ b/arm_compute/runtime/ILifetimeManager.h
@@ -58,8 +58,9 @@ public:
* @param[in] obj Object
* @param[in] obj_memory Object memory
* @param[in] size Size of the given object at given time
+ * @param[in] alignment Alignment requirements for the object
*/
- virtual void end_lifetime(void *obj, IMemory &obj_memory, size_t size) = 0;
+ virtual void end_lifetime(void *obj, IMemory &obj_memory, size_t size, size_t alignment) = 0;
/** Checks if the lifetime of the registered object is complete
*
* @return True if all object lifetimes are finalized else false.