Bug#459820: strace: Shows wrong system call

2019-10-02 Thread Dmitry V. Levin
Control: tags -1 +upstream A ptrace API extension called PTRACE_GET_SYSCALL_INFO has been implemented to fix this longstanding issue. Both strace >= 4.26 and linux kernel >= 5.3 are required to make the fix available. -- ldv

Bug#459820: strace: Shows wrong system call

2008-01-11 Thread Chris Lamb
tags 459820 + patch kthxbye Patch attached that reawakens some disabled strace code. Output of testcase is now: write(1, "\n", 21 ) = 21 [ Process PID=9059 runs in 32 bit mode. ] fork([i am 9060] ) = 9060 --- SIGCHLD (Chil

Bug#459820: strace: Shows wrong system call

2008-01-08 Thread Petri Latvala
Package: strace Version: 4.5.14-2 Severity: normal -- BEGIN TESTCASE PROGRAM -- #include #include int main () { printf("\n"); __asm__("movl $2, %eax; int $0x80"); printf("[i am %d]\n", getpid()); return 0; } -- END TESTCASE PROGRAM -- The testcase code executes fork(