Searched refs:major (Results 1 – 10 of 10) sorted by relevance
/libuv/docs/src/ |
H A D | conf.py | 25 major = int(m.group(1)) 34 return '%d.%d.%d%s' % (major, minor, patch, '-%s' % suffix if not is_release else '')
|
H A D | version.rst | 9 a major release. In this section you'll find all macros and functions that 21 libuv version's major number.
|
H A D | migration_010_100.rst | 46 Error handling had a major overhaul in libuv 1.0. In general, functions and status parameters
|
/libuv/src/unix/ |
H A D | tty.c | 124 if (major(sb.st_rdev) == NODEVMAJOR) in uv__tty_is_slave() 127 result = (pts == major(sb.st_rdev)); in uv__tty_is_slave()
|
H A D | linux.c | 306 unsigned major; in uv__kernel_version() local 323 if (3 == sscanf(v_sig, "Ubuntu %*s %u.%u.%u", &major, &minor, &patch)) in uv__kernel_version() 335 if (3 == sscanf(needle, "Debian %u.%u.%u", &major, &minor, &patch)) in uv__kernel_version() 338 if (3 != sscanf(u.release, "%u.%u.%u", &major, &minor, &patch)) in uv__kernel_version() 354 if (major == 2 && minor == 6) { in uv__kernel_version() 356 major = 4; in uv__kernel_version() 360 major = 3; in uv__kernel_version() 367 version = major * 65536 + minor * 256 + patch; in uv__kernel_version()
|
H A D | process.c | 429 unsigned major; in uv__spawn_init_can_use_setsid() local 440 if (3 != sscanf_l(buf, NULL, "%u.%u.%u", &major, &minor, &patch)) in uv__spawn_init_can_use_setsid() 443 posix_spawn_can_use_setsid = (major >= 19); /* macOS Catalina */ in uv__spawn_init_can_use_setsid()
|
/libuv/ |
H A D | LINKS.md | 29 * [Neovim](https://neovim.io/): A major refactor of Vim.
|
H A D | README.md | 40 SemVer. libuv will keep a stable ABI across major releases.
|
/libuv/docs/src/guide/ |
H A D | basics.rst | 40 nothing. For programs which require high performance this is a major roadblock
|
H A D | filesystem.rst | 264 like reference counted buffers or a pool of buffers in any major application.
|
Completed in 142 milliseconds