Thread control - posix style
creation: pthread_create (&tid, &attr, start_fn, arg);
exit : pthread_exit(&status);
join : pthread_join(thr_name, &status);
cancel : pthread_cancel(thr_name);
We will look into synchronization mechanisms when studying process synchronization.