Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update 11.1.c
  • Loading branch information
VAIBHAV-25 authored Oct 1, 2019
commit 19ede09dd5aaa2569385197666b6e776fb1a08b7
4 changes: 2 additions & 2 deletions 11.1.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ int main(void)

err = pthread_create(&ntid, NULL, thr_fn, NULL);
if (0 != err) {
printf("can't create thread :%s\n", strerror(err));
printf("...can't create thread :%s...\n", strerror(err));
exit(-1);
}

printids("main thread: ");
printids("...main thread: ");
sleep(1);

return 0;
Expand Down