Procházet zdrojové kódy

making the repo public

master
RinRi před 1 rokem
rodič
revize
c28a5bbb56
4 změnil soubory, kde provedl 6 přidání a 1 odebrání
  1. +1
    -0
      .gitignore
  2. +4
    -0
      README.md
  3. binární
      week05/ex2
  4. +1
    -1
      week05/ex2.c

+ 1
- 0
.gitignore Zobrazit soubor

@@ -0,0 +1 @@
*.ccls-cache

+ 4
- 0
README.md Zobrazit soubor

@@ -0,0 +1,4 @@
# Innopolis OS course assignments

# TODO
- Add slides for each week

binární
week05/ex2 Zobrazit soubor


+ 1
- 1
week05/ex2.c Zobrazit soubor

@@ -14,7 +14,7 @@ typedef struct {

void *print_thread(void *argv) {
Thread *t = argv;
printf("%d %s\n", t->i, t->mes);
printf("%d %lu %s\n", t->i, t->id, t->mes);
pthread_exit(NULL);
return NULL;
}


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