diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-03-04 09:14:52 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-03-24 08:32:17 -0400 |
| commit | ce50d11c4d89304825b614d63fe6d7bd8ad2d517 (patch) | |
| tree | c5c8aad8c6b51d88033cb47b1fa373b91ae2efb1 /tests/lib/test_timer_performance.c | |
| parent | e16d030c65ca97b1ba68b93ada93b1d4edde59d3 (diff) | |
*: Convert thread_master_XXX functions to event_master_XXX
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'tests/lib/test_timer_performance.c')
| -rw-r--r-- | tests/lib/test_timer_performance.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/test_timer_performance.c b/tests/lib/test_timer_performance.c index 017d90334e..f197a8d039 100644 --- a/tests/lib/test_timer_performance.c +++ b/tests/lib/test_timer_performance.c @@ -34,7 +34,7 @@ int main(int argc, char **argv) struct timeval tv_start, tv_lap, tv_stop; unsigned long t_schedule, t_remove; - master = thread_master_create(NULL); + master = event_master_create(NULL); prng = prng_new(0); timers = calloc(SCHEDULE_TIMERS, sizeof(*timers)); @@ -80,7 +80,7 @@ int main(int argc, char **argv) fflush(stdout); free(timers); - thread_master_free(master); + event_master_free(master); prng_free(prng); return 0; } |
