File: loop.c

package info (click to toggle)
dqlite 1.18.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 3,364 kB
  • sloc: ansic: 57,460; makefile: 336; sh: 243
file content (7 lines) | stat: -rw-r--r-- 192 bytes parent folder | download | duplicates (2)
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 %s (%d)", uv_handle_type_name(handle->type), handle->type);
}