タグ

これはよいとptraceに関するiwwのブックマーク (3)

  • Fixunix

    iww
    iww 2012/02/16
    PTRACE_O_TRACEFORKなんてあったのか。よく読んでなかった
  • コグノスケ


    ptrace ptracestracestraceptraceptrace使 使Linux  2008725BSD  ptrace $ gcc -Wall 20080724_ptrace_simple.c $ ls -l 28 -rw-r--r-- 1 katsuhiro katsuh
  • 50行straceもどき - memologue


    strace50C99 // strace_modoki.c: Linux/x86x86_64-m32 #include <stdio.h> #include <unistd.h> #include <sys/ptrace.h> #include <sys/types.h> #include <sys/wait.h> #include <asm/user.h> #include <asm/ptrace.h> int main() { int i; static const char* syscallstr[1000] = {0}; for(i = 0; i < 1000; ++i) syscallstr[i] = "???";
    50行straceもどき - memologue
    iww
    iww 2008/01/29
    pid_t p = fork();
  • 1