Procházet zdrojové kódy

add progs for lec2

main
chyyuu před 11 roky
rodič
revize
09ffe0ec51
3 změnil soubory, kde provedl 13 přidání a 0 odebrání
  1. +8
    -0
      related_info/lec2/Makefile
  2. binární
      related_info/lec2/hello
  3. +5
    -0
      related_info/lec2/hello.c

+ 8
- 0
related_info/lec2/Makefile Zobrazit soubor

@ -0,0 +1,8 @@
all: hello.c
echo "compile and watch the syscalls from hello"
gcc -o hello hello.c
strace -c ./hello
echo "watch the interrupts in linux"
more /proc/interrupts
clean:
rm ./hello

binární
related_info/lec2/hello Zobrazit soubor


+ 5
- 0
related_info/lec2/hello.c Zobrazit soubor

@ -0,0 +1,5 @@
#include <stdio.h>
void main(void)
{
printf("hello world\n");
}

Načítá se…
Zrušit
Uložit