trace-events (c2b38b277a7882a592f4f2ec955084b2b756daaa) trace-events (0c330a734b51c177ab8488932ac3b0c4d63a718a)
1# See docs/tracing.txt for syntax documentation.
2
3# util/aio-posix.c
4run_poll_handlers_begin(void *ctx, int64_t max_ns) "ctx %p max_ns %"PRId64
5run_poll_handlers_end(void *ctx, bool progress) "ctx %p progress %d"
6poll_shrink(void *ctx, int64_t old, int64_t new) "ctx %p old %"PRId64" new %"PRId64
7poll_grow(void *ctx, int64_t old, int64_t new) "ctx %p old %"PRId64" new %"PRId64
8
1# See docs/tracing.txt for syntax documentation.
2
3# util/aio-posix.c
4run_poll_handlers_begin(void *ctx, int64_t max_ns) "ctx %p max_ns %"PRId64
5run_poll_handlers_end(void *ctx, bool progress) "ctx %p progress %d"
6poll_shrink(void *ctx, int64_t old, int64_t new) "ctx %p old %"PRId64" new %"PRId64
7poll_grow(void *ctx, int64_t old, int64_t new) "ctx %p old %"PRId64" new %"PRId64
8
9# util/async.c
10aio_co_schedule(void *ctx, void *co) "ctx %p co %p"
11aio_co_schedule_bh_cb(void *ctx, void *co) "ctx %p co %p"
12
9# util/thread-pool.c
10thread_pool_submit(void *pool, void *req, void *opaque) "pool %p req %p opaque %p"
11thread_pool_complete(void *pool, void *req, void *opaque, int ret) "pool %p req %p opaque %p ret %d"
12thread_pool_cancel(void *req, void *opaque) "req %p opaque %p"
13
14# util/buffer.c
15buffer_resize(const char *buf, size_t olen, size_t len) "%s: old %zd, new %zd"
16buffer_move_empty(const char *buf, size_t len, const char *from) "%s: %zd bytes from %s"

--- 37 unchanged lines hidden ---
13# util/thread-pool.c
14thread_pool_submit(void *pool, void *req, void *opaque) "pool %p req %p opaque %p"
15thread_pool_complete(void *pool, void *req, void *opaque, int ret) "pool %p req %p opaque %p ret %d"
16thread_pool_cancel(void *req, void *opaque) "req %p opaque %p"
17
18# util/buffer.c
19buffer_resize(const char *buf, size_t olen, size_t len) "%s: old %zd, new %zd"
20buffer_move_empty(const char *buf, size_t len, const char *from) "%s: %zd bytes from %s"

--- 37 unchanged lines hidden ---