sys-rs 0.1.1

ptrace-based Linux system tool reimplementations: strace, gcov, addr2line, debugger
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
        -:    1:#include <stdio.h>
        -:    2:
        1:    3:int main() {
        1:    4:    int i = 0;
       14:    5:    while (i < 12) {
       12:    6:        printf("Hello, World!\n");
       12:    7:        if (i == 5) {
        1:    8:            printf("i is 5\n");
        -:    9:        }
       12:   10:        i++;
        -:   11:    }
        1:   12:    return 0;
        1:   13:}