* Mathieu Desnoyers: > /* > * TODO: document trap instruction objdump output on each sub-architecture > * instruction sets, as well as instruction set extensions. > */ > #define RSEQ_SIG 0x########
Will RSEQ_SIG actually be needed at run time outside the rseq implementation library (whether it's glibc or something else)? Actually rseq users will emit the signature directly into the text section, right? They never have to load it into a register, I assume. My concern is that on some architectures, the very act of referencing RSEQ_SIG will put it into the text section, as a non-instruction, which is not what we want. Thanks, Florian

