aboutsummaryrefslogtreecommitdiff
path: root/test/performance
diff options
context:
space:
mode:
authorPetri Savolainen <petri.savolainen@linaro.org>2015-01-26 15:05:47 +0200
committerMaxim Uvarov <maxim.uvarov@linaro.org>2015-01-27 15:34:30 +0300
commit8d0f8982236b400b11b2e712e3bbd289694e6f2b (patch)
tree0d4fc7575ee10c44812dd71910b029b293d41693 /test/performance
parent9cb80344f017193a3c432c2a12fe7af348881396 (diff)
api: pool: Rename pool params and remove buffer types
* Renamed odp_buffer_pool_param_t to odp_pool_param_t * Moved buffer pool parameters into "buf" struct * Left other structs for other types (pkt and tmo) to be added and implemented * Pool type field is common to all pool types * Removed buffer types and use ODP_EVENT_XXX for event type and ODP_POOL_XXX for pool type instead. So event types may not be assosiated to a pool (and may not have a corresponding pool type). Signed-off-by: Petri Savolainen <petri.savolainen@linaro.org> Reviewed-and-tested-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'test/performance')
-rw-r--r--test/performance/odp_scheduling.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/performance/odp_scheduling.c b/test/performance/odp_scheduling.c
index 9f6eca141..bf6cf1096 100644
--- a/test/performance/odp_scheduling.c
+++ b/test/performance/odp_scheduling.c
@@ -828,8 +828,8 @@ int main(int argc, char *argv[])
int prios;
odp_shm_t shm;
test_globals_t *globals;
- odp_buffer_pool_param_t params;
char cpumaskstr[64];
+ odp_pool_param_t params;
printf("\nODP example starts\n\n");
@@ -904,10 +904,10 @@ int main(int argc, char *argv[])
* Create message pool
*/
- params.buf_size = sizeof(test_message_t);
- params.buf_align = 0;
- params.num_bufs = MSG_POOL_SIZE/sizeof(test_message_t);
- params.buf_type = ODP_BUFFER_TYPE_RAW;
+ params.buf.size = sizeof(test_message_t);
+ params.buf.align = 0;
+ params.buf.num = MSG_POOL_SIZE/sizeof(test_message_t);
+ params.type = ODP_POOL_BUFFER;
pool = odp_buffer_pool_create("msg_pool", ODP_SHM_NULL, &params);