mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
6e6fc38935
Commit bc6c183
introduced a bunch of discrepancies between what files
look like in the repo and what clang-format says they should look like.
However, there were already a few discrepancies prior to that. Most of
these discrepancies seemed to be unintentional, but a few of them were
load-bearing (e.g., a #include that violated header ordering needing
something to have been #defined by a 'later' #include.)
I opted to take what I hope is a relatively smooth-brained approach: I
reverted the .clang-format change, ran clang-format on the whole repo,
reapplied the .clang-format change, reran clang-format again, and then
reverted the commit that contained the first run. Thus the full effect
of this PR should only be to apply the changed formatting rules to the
repo, and from skimming the results, this seems to be the case.
My work can be checked by applying the short, manual commits, and then
rerunning the command listed in the autogenerated commits (those whose
messages I have prefixed auto:) and seeing if your results agree.
It might be that the other diffs should be fixed at some point but I'm
leaving that aside for now.
fd '\.c(c|pp)?$' --print0| xargs -0 clang-format -i
90 lines
2.7 KiB
C
90 lines
2.7 KiB
C
#if 0
|
|
/*─────────────────────────────────────────────────────────────────╗
|
|
│ To the extent possible under law, Justine Tunney has waived │
|
|
│ all copyright and related or neighboring rights to this file, │
|
|
│ as it is written in the following disclaimers: │
|
|
│ • http://unlicense.org/ │
|
|
│ • http://creativecommons.org/publicdomain/zero/1.0/ │
|
|
╚─────────────────────────────────────────────────────────────────*/
|
|
#endif
|
|
#include "libc/calls/struct/rusage.h"
|
|
#include "libc/calls/calls.h"
|
|
#include "libc/calls/struct/rusage.h"
|
|
#include "libc/calls/struct/sigaction.h"
|
|
#include "libc/calls/struct/sigset.h"
|
|
#include "libc/calls/struct/timespec.h"
|
|
#include "libc/fmt/itoa.h"
|
|
#include "libc/log/appendresourcereport.internal.h"
|
|
#include "libc/runtime/runtime.h"
|
|
#include "libc/stdio/append.h"
|
|
#include "libc/stdio/stdio.h"
|
|
#include "libc/sysv/consts/sig.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
const char *prog = argv[0];
|
|
if (!prog)
|
|
prog = "rusage";
|
|
|
|
if (argc < 2) {
|
|
tinyprint(2, prog, ": missing command\n", NULL);
|
|
exit(1);
|
|
}
|
|
|
|
// block process management signals
|
|
sigset_t mask, orig;
|
|
sigemptyset(&mask);
|
|
sigaddset(&mask, SIGINT);
|
|
sigaddset(&mask, SIGQUIT);
|
|
sigaddset(&mask, SIGCHLD);
|
|
sigprocmask(SIG_BLOCK, &mask, &orig);
|
|
|
|
struct timespec started = timespec_real();
|
|
|
|
// launch subprocess
|
|
int child = fork();
|
|
if (child == -1) {
|
|
perror(prog);
|
|
exit(1);
|
|
}
|
|
if (!child) {
|
|
sigprocmask(SIG_SETMASK, &orig, 0);
|
|
execvp(argv[1], argv + 1);
|
|
_Exit(127);
|
|
}
|
|
|
|
// wait for subprocess
|
|
int ws;
|
|
struct rusage ru;
|
|
struct sigaction ignore;
|
|
ignore.sa_flags = 0;
|
|
ignore.sa_handler = SIG_IGN;
|
|
sigemptyset(&ignore.sa_mask);
|
|
sigaction(SIGINT, &ignore, 0);
|
|
sigaction(SIGQUIT, &ignore, 0);
|
|
if (wait4(child, &ws, 0, &ru) == -1) {
|
|
perror(prog);
|
|
exit(1);
|
|
}
|
|
|
|
// compute wall time
|
|
char strmicros[27];
|
|
struct timespec ended = timespec_real();
|
|
struct timespec elapsed = timespec_sub(ended, started);
|
|
FormatInt64Thousands(strmicros, timespec_tomicros(elapsed));
|
|
|
|
// show report
|
|
char *b = 0;
|
|
appends(&b, "took ");
|
|
appends(&b, strmicros);
|
|
appends(&b, "µs wall time\n");
|
|
AppendResourceReport(&b, &ru, "\n");
|
|
write(2, b, appendz(b).i);
|
|
|
|
// propagate status
|
|
if (WIFSIGNALED(ws)) {
|
|
signal(WTERMSIG(ws), SIG_DFL);
|
|
raise(WTERMSIG(ws));
|
|
}
|
|
return WEXITSTATUS(ws);
|
|
}
|