Lines Matching defs:version
330 unsigned version;
337 version = atomic_load_explicit(&cached_version, memory_order_relaxed);
338 if (version != 0)
339 return version;
342 * kernel version in Ubuntu. The format is:
354 /* In Debian we need to check `version` instead of `release` to extract the
355 * mainline kernel version. This is an example of how it looks like:
358 needle = strstr(u.version, "Debian ");
376 * kernel version for a brief moment because uname() first copies out the
392 version = major * 65536 + minor * 256 + patch;
393 atomic_store_explicit(&cached_version, version, memory_order_relaxed);
395 return version;