From: Sachin Saxena <sachin.sax...@nxp.com>

Signed-off-by: Sachin Saxena <sachin.sax...@linaro.org>
---
/** Email created from pull request 200 (sachin-saxena:api-next)
 ** https://github.com/Linaro/odp/pull/200
 ** Patch: https://github.com/Linaro/odp/pull/200.patch
 ** Base sha: ec6510b33e8b96d6d6670efb9dc3c9101baed6c6
 ** Merge commit sha: 1d9da4eea5706f6919759d19710ed7981c13d2bf
 **/
 include/odp/api/spec/pool.h | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/include/odp/api/spec/pool.h b/include/odp/api/spec/pool.h
index 221798ee8..94062c2de 100644
--- a/include/odp/api/spec/pool.h
+++ b/include/odp/api/spec/pool.h
@@ -294,6 +294,22 @@ odp_pool_t odp_pool_lookup(const char *name);
 typedef struct odp_pool_info_t {
        const char *name;          /**< pool name */
        odp_pool_param_t params;   /**< pool parameters */
+
+       /** Minimum data address.
+        * This is the minimum address that application accessible data of any
+        * object (event) allocated from the pool may locate. When there's no
+        * application accessible data (e.g. ODP_POOL_TIMEOUT pools), the
+        * value maybe zero.
+        */
+       uintptr_t min_data_addr;
+
+       /** Maximum data address.
+        * This is the maximum address that application accessible data of any
+        * object (event) allocated from the pool may locate. When there's no
+        * application accessible data (e.g. ODP_POOL_TIMEOUT pools), the
+        * value maybe zero.
+        */
+       uintptr_t max_data_addr;
 } odp_pool_info_t;
 
 /**

Reply via email to