mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
b45d50b690
- Fix build flakes - Polyfill SIGWINCH on Windows - Fix an execve issue on Windows - Make strerror show more information - Improve cmd.exe setup/teardown on Windows - Support bracketed paste mode in Blinkenlights - Show keyboard shortcuts in Blinkenlights status bar - Fixed copy_file_range() and copyfile() w/ zip filesystem - Size optimize GetDosArgv() to keep life.com 12kb in size - Improve Blinkenlights ability to load weird ELF executables - Fix program_executable_name and add GetInterpreterExecutableName - Make Python in tiny mode fail better if docstrings are requested - Update Python test exclusions in tiny* modes such as tinylinux - Add bulletproof unbreakable kprintf() troubleshooting function - Remove "oldskool" keyword from ape.S for virus scanners - Fix issue that caused backtraces to not print sometimes - Improve Blinkenlights serial uart character i/o - Make clock_gettime() not clobber errno on xnu - Improve sha256 cpuid check for old computers - Integrate some bestline linenoise fixes - Show runit process names better in htop - Remove SIGPIPE from ShowCrashReports() - Make realpath() not clobber errno - Avoid attaching GDB on non-Linux - Improve img.com example
61 lines
2.9 KiB
C
61 lines
2.9 KiB
C
#ifndef COSMOPOLITAN_LIBC_LOG_GDB_H_
|
|
#define COSMOPOLITAN_LIBC_LOG_GDB_H_
|
|
#include "libc/calls/calls.h"
|
|
#include "libc/calls/wait4.h"
|
|
#include "libc/sysv/consts/nr.h"
|
|
#include "libc/sysv/consts/w.h"
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
/**
|
|
* @fileoverview GDB Attach Support Code.
|
|
*
|
|
* The goal of these macros is to make the backtrace into the failing
|
|
* code as short as possible. It also helps avoid GDB getting confused
|
|
* about how we don't use its readability destroying unwind directives.
|
|
*/
|
|
|
|
extern volatile int g_gdbsync;
|
|
|
|
int gdbexec(const char *);
|
|
int AttachDebugger(intptr_t);
|
|
|
|
#define AttachDebugger(CONTINUE_TO_ADDR) /* shorten backtraces */ \
|
|
SYNCHRONIZE_DEBUGGER((AttachDebugger)(CONTINUE_TO_ADDR))
|
|
|
|
#define SYNCHRONIZE_DEBUGGER(PID) \
|
|
({ \
|
|
int Rc, Pid = (PID); \
|
|
if (Pid != -1) { \
|
|
while ((Rc = __inline_wait4(Pid, NULL, WNOHANG, NULL)) == 0) { \
|
|
if (g_gdbsync) { \
|
|
g_gdbsync = 0; \
|
|
if (Rc > 0) Pid = 0; \
|
|
break; \
|
|
} else { \
|
|
sched_yield(); \
|
|
} \
|
|
} \
|
|
} \
|
|
Pid; \
|
|
})
|
|
|
|
#define __inline_wait4(PID, OPT_OUT_WSTATUS, OPTIONS, OPT_OUT_RUSAGE) \
|
|
({ \
|
|
int64_t WaAx; \
|
|
if (!IsWindows()) { \
|
|
asm volatile("mov\t%5,%%r10\n\t" \
|
|
"syscall" \
|
|
: "=a"(WaAx) \
|
|
: "0"(__NR_wait4), "D"(PID), "S"(OPT_OUT_WSTATUS), \
|
|
"d"(OPTIONS), "g"(OPT_OUT_RUSAGE) \
|
|
: "rcx", "r8", "r9", "r10", "r11", "memory", "cc"); \
|
|
} else { \
|
|
WaAx = sys_wait4_nt(PID, OPT_OUT_WSTATUS, OPTIONS, OPT_OUT_RUSAGE); \
|
|
} \
|
|
WaAx; \
|
|
})
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_LOG_GDB_H_ */
|