kitchen.html 961 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <html>
  2. <head>
  3. <title>kitchen</title>
  4. <body bgcolor=#ffffff>
  5. <h2 align=center>kitchen</h2>
  6. <h4 align=center>OS/161 Reference Manual</h4>
  7. <h3>Name</h3>
  8. kitchen - run some sinks
  9. <h3>Synopsis</h3>
  10. /testbin/kitchen
  11. <h3>Description</h3>
  12. Runs four copies of <A HREF=sink.html>sink</A>. It may be useful for
  13. testing concurrent access to the console device. It may also be useful
  14. for testing job control, if you choose to pursue job control.
  15. <h3>Requirements</h3>
  16. kitchen uses the following system calls:
  17. <ul>
  18. <li> <A HREF=../syscall/fork.html>fork</A>
  19. <li> <A HREF=../syscall/execv.html>execv</A>
  20. <li> <A HREF=../syscall/write.html>write</A>
  21. <li> <A HREF=../syscall/_exit.html>_exit</A>
  22. </ul>
  23. Additionally, the subprocesses it spawns use the
  24. <A HREF=../syscall/read.html>read</A> system call.
  25. <p>
  26. kitchen should function correctly once the basic system calls are
  27. complete.
  28. <h3>Bugs</h3>
  29. kitchen does not wait for its child processes to exit.
  30. </body>
  31. </html>