Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. // Ensure that three file descriptors are open.
  2. while((fd = open("console", O_RDWR)) >= 0){
  3. if(fd >= 3){
  4. close(fd);
  5. break;
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement