File: loop.c

package info (click to toggle)
raft 0.22.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,504 kB
  • sloc: ansic: 37,539; makefile: 264; sh: 77; python: 22
file content (7 lines) | stat: -rw-r--r-- 152 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
#include "loop.h"

void test_loop_walk_cb(uv_handle_t *handle, void *arg)
{
    (void)arg;
    munit_logf(MUNIT_LOG_INFO, "handle %d", handle->type);
}