tools/perf/tests/workloads/sqrtloop.c
Source file repositories/reference/linux-study-clean/tools/perf/tests/workloads/sqrtloop.c
File Facts
- System
- Linux kernel
- Corpus path
tools/perf/tests/workloads/sqrtloop.c- Extension
.c- Size
- 667 bytes
- Lines
- 46
- Domain
- Support Tooling And Documentation
- Bucket
- tools
- Inferred role
- Support Tooling And Documentation: implementation source
- Status
- source implementation candidate
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
Dependency Surface
math.hsignal.hstdlib.hunistd.hlinux/compiler.hsys/wait.h../tests.h
Detected Declarations
function sighandlerfunction __sqrtloopfunction sqrtloop
Annotated Snippet
#include <math.h>
#include <signal.h>
#include <stdlib.h>
#include <unistd.h>
#include <linux/compiler.h>
#include <sys/wait.h>
#include "../tests.h"
static volatile sig_atomic_t done;
static void sighandler(int sig __maybe_unused)
{
done = 1;
}
static int __sqrtloop(int sec)
{
signal(SIGALRM, sighandler);
alarm(sec);
while (!done)
(void)sqrt(rand());
return 0;
}
static int sqrtloop(int argc, const char **argv)
{
int sec = 1;
if (argc > 0)
sec = atoi(argv[0]);
switch (fork()) {
case 0:
return __sqrtloop(sec);
case -1:
return -1;
default:
wait(NULL);
}
return 0;
}
DEFINE_WORKLOAD(sqrtloop);
Annotation
- Immediate include surface: `math.h`, `signal.h`, `stdlib.h`, `unistd.h`, `linux/compiler.h`, `sys/wait.h`, `../tests.h`.
- Detected declarations: `function sighandler`, `function __sqrtloop`, `function sqrtloop`.
- Atlas domain: Support Tooling And Documentation / tools.
- Implementation status: source implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.