Thread: CPU-bound and I/O bound

  1. #1
    Registered User jacktibet's Avatar
    Join Date
    Mar 2003
    Posts
    18

    Angry CPU-bound and I/O bound

    hi,
    there are two definaion "CPU-bound" and " I/O- bound "when I study minix.
    What are they????
    Jack

  2. #2
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,659
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

  3. #3
    Registered User
    Join Date
    Jul 2003
    Posts
    15
    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.

  4. #4
    .
    Join Date
    Nov 2003
    Posts
    307
    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.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. non-blocking send/recv
    By antex in forum Networking/Device Communication
    Replies: 14
    Last Post: 05-31-2007, 01:10 PM
  2. asynchronized I/O == multiplexing I/O?
    By George2 in forum C Programming
    Replies: 1
    Last Post: 07-24-2006, 10:06 AM
  3. why page based I/O can improve performance?
    By George2 in forum C Programming
    Replies: 1
    Last Post: 06-12-2006, 07:42 AM
  4. Overlapped I/O and Completion Port :: Winsock
    By kuphryn in forum Windows Programming
    Replies: 0
    Last Post: 10-30-2002, 05:14 PM
  5. WSAAsyncSelect I/O & Multithreading :: Winsock
    By kuphryn in forum Windows Programming
    Replies: 4
    Last Post: 09-27-2002, 02:28 AM