dirseek.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <html>
  2. <head>
  3. <title>dirseek</title>
  4. <body bgcolor=#ffffff>
  5. <h2 align=center>dirseek</h2>
  6. <h4 align=center>OS/161 Reference Manual</h4>
  7. <h3>Name</h3>
  8. dirseek - seek on directories test
  9. <h3>Synopsis</h3>
  10. /testbin/dirseek
  11. <h3>Description</h3>
  12. dirseek creates a test directory, creates some files in it, and lists
  13. the directory repeatedly, seeking in a variety of ways (some legal,
  14. some not).
  15. <h3>Requirements</h3>
  16. dirseek uses the following system calls:
  17. <ul>
  18. <li> <A HREF=../syscall/chdir.html>chdir</A>
  19. <li> <A HREF=../syscall/close.html>close</A>
  20. <li> <A HREF=../syscall/getdirentry.html>getdirentry</A>
  21. <li> <A HREF=../syscall/lseek.html>lseek</A>
  22. <li> <A HREF=../syscall/mkdir.html>mkdir</A>
  23. <li> <A HREF=../syscall/open.html>open</A>
  24. <li> <A HREF=../syscall/remove.html>remove</A>
  25. <li> <A HREF=../syscall/rmdir.html>rmdir</A>
  26. <li> <A HREF=../syscall/write.html>write</A>
  27. <li> <A HREF=../syscall/_exit.html>_exit</A>
  28. </ul>
  29. dirseek should run (on SFS filesystems) when the file system
  30. assignment is complete. It will not run on emufs, because emufs does
  31. not support mkdir or rmdir.
  32. </body>
  33. </html>