MCPcopy Create free account
hub / github.com/Kitware/CMake / uv_default_loop

Function uv_default_loop

Utilities/cmlibuv/src/uv-common.c:781–790  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

779
780
781uv_loop_t* uv_default_loop(void) {
782 if (default_loop_ptr != NULL)
783 return default_loop_ptr;
784
785 if (uv_loop_init(&default_loop_struct))
786 return NULL;
787
788 default_loop_ptr = &default_loop_struct;
789 return default_loop_ptr;
790}
791
792
793uv_loop_t* uv_loop_new(void) {

Callers 6

test_uv_fs_mkdtempFunction · 0.85
mainFunction · 0.85
uv__print_handlesFunction · 0.85
uv__os390_cleanupFunction · 0.85
mainFunction · 0.85
InitializeLibUVMethod · 0.85

Calls 1

uv_loop_initFunction · 0.50

Tested by 1

test_uv_fs_mkdtempFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…