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

版本 199c585a9ea197d161eb4a5e3f93dffb95d7a151

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

進階電腦系統理論與實作 (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)