trace-events (02b351d8466a26c93bf35ff8fd5c316e6aee8c0f) trace-events (c2b38b277a7882a592f4f2ec955084b2b756daaa)
1# See docs/tracing.txt for syntax documentation.
2
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/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
3# util/buffer.c
4buffer_resize(const char *buf, size_t olen, size_t len) "%s: old %zd, new %zd"
5buffer_move_empty(const char *buf, size_t len, const char *from) "%s: %zd bytes from %s"
6buffer_move(const char *buf, size_t len, const char *from) "%s: %zd bytes from %s"
7buffer_free(const char *buf, size_t len) "%s: capacity %zd"
8
9# util/qemu-coroutine.c
10qemu_coroutine_enter(void *from, void *to, void *opaque) "from %p to %p opaque %p"

--- 32 unchanged lines hidden ---
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"
17buffer_move(const char *buf, size_t len, const char *from) "%s: %zd bytes from %s"
18buffer_free(const char *buf, size_t len) "%s: capacity %zd"
19
20# util/qemu-coroutine.c
21qemu_coroutine_enter(void *from, void *to, void *opaque) "from %p to %p opaque %p"

--- 32 unchanged lines hidden ---