分享到plurk 分享到twitter 分享到facebook

系統軟體課程進度與開放資源

  • Instructor: Jim Huang (黃敬群) <jserv.tw@gmail.com>
  • 課程信箱: <embedded.master2015@gmail.com>

進階電腦系統理論與實作 (Fall 2019)

進階電腦系統理論與實作 (Fall 2018)

作業系統設計與實作 (Spring 2018)

進階電腦系統理論與實作 (Fall 2017)

void *thread(void *vargp);
int main() {
  pthread_t tid;
  pthread_create(&tid, NULL, thread, NULL);
  exit(0);
}
void *thread(void *vargp) {
  sleep(1);
  printf("Hello, world!\n");
  return NULL;
}

作業系統設計與實作 (Spring 2017)

進階電腦系統理論與實作 (Fall 2016)