Home
last modified time | relevance | path

Searched refs:now (Results 1 – 25 of 25) sorted by relevance

/libuv/docs/
H A DMakefile76 @echo "Build finished; now you can process the pickle files."
81 @echo "Build finished; now you can process the JSON files."
86 @echo "Build finished; now you can run HTML Help Workshop with the" \
92 @echo "Build finished; now you can run "qcollectiongenerator" with the" \
H A Dmake.bat92 echo.Build finished; now you can process the pickle files.
100 echo.Build finished; now you can process the JSON files.
108 echo.Build finished; now you can run HTML Help Workshop with the ^
117 echo.Build finished; now you can run "qcollectiongenerator" with the ^
/libuv/src/unix/
H A Ddarwin.c168 time_t now; in uv_uptime() local
176 now = time(NULL); in uv_uptime()
177 *uptime = now - info.tv_sec; in uv_uptime()
H A Dopenbsd.c169 time_t now; in uv_uptime() local
177 now = time(NULL); in uv_uptime()
179 *uptime = (double)(now - info.tv_sec); in uv_uptime()
H A Dnetbsd.c170 time_t now; in uv_uptime() local
178 now = time(NULL); in uv_uptime()
180 *uptime = (double)(now - info.tv_sec); in uv_uptime()
H A Dlinux.c1694 struct timespec now; in uv_uptime() local
1705 if (clock_gettime(CLOCK_BOOTTIME, &now)) in uv_uptime()
1708 *uptime = now.tv_sec; in uv_uptime()
/libuv/docs/src/
H A Dmigration_010_100.rst82 In 1.0, we unified both implementations, so Windows now uses the same implementation Unix
113 duality, there is only :c:func:`uv_tcp_bind` now.
147 The streams and UDP data receive callbacks now get a pointer to a :c:type:`uv_buf_t` buffer,
231 This is now properly exposed through the :c:func:`uv_fileno` function.
H A Ddesign.rst63 #. The loop concept of 'now' is initially set.
66 for a time before the loop's concept of *now* get their callbacks called.
103 #. The loop concept of 'now' is updated.
105 #. Due timers are run. Note that 'now' is not updated again until the next loop iteration.
H A Ddns.rst90 .. versionchanged:: 1.3.0 the callback parameter is now allowed to be NULL,
105 .. versionchanged:: 1.3.0 the callback parameter is now allowed to be NULL,
H A Dtty.rst87 .. versionchanged:: 1.23.1: the `readable` parameter is now unused and ignored.
88 The correct value will now be auto-detected from the kernel.
H A Dthreadpool.rst17 .. versionchanged:: 1.45.0 threads now have an 8 MB stack instead of the
H A Dtimer.rst46 …Does not update the event loop's concept of "now". See :c:func:`uv_update_time` for more informati…
H A Dloop.rst187 Update the event loop's concept of "now". Libuv caches the current time
249 Any previous value returned from :c:func:`uv_backend_fd` is now
H A Dudp.rst54 * that it should now be freed by the recv_cb callback. When this flag is set
75 * FreeBSD 12.0+, Solaris 11.4, and AIX 7.2.5+ for now.
114 the callee can now safely free the provided buffer.
H A Dmisc.rst327 .. versionchanged:: 1.18.1 now thread-safe on all supported platforms.
329 .. versionchanged:: 1.39.0 now returns an error if `uv_setup_args` is needed
342 .. versionchanged:: 1.18.1 now thread-safe on all supported platforms.
344 .. versionchanged:: 1.39.0 now returns an error if `uv_setup_args` is needed
H A Dtcp.rst36 * FreeBSD 12.0+, Solaris 11.4, and AIX 7.2.5+ for now.
H A Dstream.rst142 .. versionchanged:: 1.38.0 :c:func:`uv_read_start()` now consistently
/libuv/src/
H A Duv-common.c993 uint64_t now; in uv__metrics_set_provider_entry_time() local
998 now = uv_hrtime(); in uv__metrics_set_provider_entry_time()
1001 loop_metrics->provider_entry_time = now; in uv__metrics_set_provider_entry_time()
/libuv/docs/src/guide/
H A Dutilities.rst121 events we are interested in. ``crunch_away`` will now be called repeatedly
386 The ``unused`` parameter is now auto-detected and ignored. It previously needed
440 .. versionchanged:: 1.23.1: the `readable` parameter is now unused and ignored.
441 The appropriate value will now be auto-detected from the kernel.
H A Dprocesses.rst312 directory. This socket now behaves no different from TCP sockets as far as
334 supports sending **TCP sockets or other pipes** over pipes for now.
374 Turning now to the master, let's take a look at how the workers are launched to
H A Dbasics.rst215 and see how ``uv_run()`` will now block because a watcher is present. The idle
H A Dthreads.rst54 custom parameters to the thread. The function ``hare`` will now run in a separate
/libuv/
H A DChangeLog4532 * build: make dist now generates a full tarball (Johan Bergström)
5688 * include: uv_alloc_cb now takes uv_buf_t* (Ben Noordhuis)
5690 * include: uv_read{2}_cb now takes const uv_buf_t* (Ben Noordhuis)
5692 * include: uv_ip[46]_addr now takes sockaddr_in* (Ben Noordhuis)
5694 * include: uv_tcp_bind{6} now takes sockaddr_in* (Ben Noordhuis)
5696 * include: uv_tcp_connect{6} now takes sockaddr_in* (Ben Noordhuis)
5700 * include: uv_udp_bind{6} now takes sockaddr_in* (Ben Noordhuis)
5702 * include: uv_udp_send{6} now takes sockaddr_in* (Ben Noordhuis)
5748 and st_blksize are now also filled out. (Bert Belder)
5920 * build: `all` now builds static and dynamic lib (Ben Noordhuis)
[all …]
H A DLICENSE-docs157 all media and formats whether now known or hereafter created,
H A DCMakeLists.txt496 # Small hack: use ${uv_test_sources} now to get the runner skeleton,

Completed in 78 milliseconds