libc.ts ×1

Frontier kind: Code frontier

unlabeled · c_c0d1be5542b8

233 tests · 3407 LOC · 19 files · introduces 0 tests · 29 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
1 range29 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
481 ranges3407 lines · 19 files · Browse complete extent
All tests (intent)
233 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

1 file ranked by introduced lines: 29 introduced LOC across 1 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/base/node/libc.ts 29 introduced LOC · 1 range

Open complete file

1 > /*--------------------------------------------------------------------------------------------- libc.ts
2 > * Copyright (c) Microsoft Corporation. All rights reserved.
3 > * Licensed under the MIT License. See License.txt in the project root for license information.
4 > *--------------------------------------------------------------------------------------------*/
5 >
6 > import { familySync, MUSL } from 'detect-libc';
7 > import * as Platform from '../common/platform.js';
8 >
9 > /** The libc family the current process is linked against. */
10 > export type LibcFamily = 'glibc' | 'musl';
11 >
12 > let _cached: LibcFamily | undefined;
13 > let _cacheValid = false;
14 >
15 > /**
16 > * Returns the libc family of the running Node process on Linux, or `undefined`
17 > * on non-Linux platforms (where the question is meaningless).
18 > *
19 > * Delegates to the `detect-libc` package, which probes cheap signals first (the
20 > * ELF interpreter of `/proc/self/exe`, then `/usr/bin/ldd`) and only falls back
21 > * to Node's process report — with the libuv/socket section excluded so it does
22 > * not peg the CPU on busy hosts. When detection is inconclusive we assume
23 > * `glibc`, the dominant Linux libc.
24 > *
25 > * Cached after first call; libc never changes mid-process. This is the
26 > * synchronous variant; add a promise-based `detectLibc` wrapping
27 > * `detect-libc`'s async `family()` if a non-blocking caller ever needs one.
28 > */
29 > export function detectLibcSync(): LibcFamily | undefined {
30 if (_cacheValid) {
31 return _cached;