CPU-bound and I/O bound [Archive] - C Board

PDA

View Full Version : CPU-bound and I/O bound


jacktibet
10-25-2003, 12:06 AM
hi,
there are two definaion "CPU-bound" and " I/O- bound "when I study minix.
What are they????

Salem
10-25-2003, 12:14 AM
http://www.google.com/search?q=CPU+bound
Got it?

Alexisa
11-03-2003, 11:46 AM
CPU Bound jobs are jobs that spend most of their time using the CPU, although they do preform I/O operations as well.

I/O Bound jobs are jobs that spend most of their time doing I/O, although they do use the CPU as well.

jim mcnamara
11-11-2003, 12:16 PM
When a process is cpu-bound it is limited by the available cpu cycles.

When i/o/ bound it is limited by the speed of disk i/o

In either case, if you add resource: - more cpu or faster disk access -- the program speeds up.