mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-27 14:58:30 +00:00
Allocate explicit stack on aarch64
This commit is contained in:
parent
0e586c834a
commit
de3f3a9e5a
10 changed files with 144 additions and 74 deletions
|
@ -206,12 +206,14 @@ relegated void __oncrash_arm64(int sig, struct siginfo *si, void *arg) {
|
|||
}
|
||||
Append(b,
|
||||
"%serror%s: Uncaught %G (%s) on %s pid %d tid %d\n"
|
||||
" %s\n"
|
||||
" %m\n"
|
||||
" %s %s %s %s\n",
|
||||
"%s\n",
|
||||
strong, reset, sig, kind, host, getpid(), gettid(),
|
||||
program_invocation_name, names.sysname, names.version,
|
||||
names.nodename, names.release);
|
||||
program_invocation_name);
|
||||
if (errno) {
|
||||
Append(b, " %m\n");
|
||||
}
|
||||
Append(b, " %s %s %s %s\n", names.sysname, names.version, names.nodename,
|
||||
names.release);
|
||||
if (ctx) {
|
||||
long pc;
|
||||
char line[256];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue