0

I read the libuv sourcecode and found these function declarations:

void uv_prepare_invoke(uv_loop_t* loop);
void uv_check_invoke(uv_loop_t* loop);
void uv_idle_invoke(uv_loop_t* loop);

Defined in internal.h.

But I can't find the function bodies, why?

robertklep
  • 198,204
  • 35
  • 394
  • 381
张立伟
  • 57
  • 4

1 Answers1

1

The function bodies are generated through a macro. See this.

robertklep
  • 198,204
  • 35
  • 394
  • 381