Skip to content
Advertisement

How can I write a I/O bound C program?

I must write programs that are I/O Bound and that will make my I/O scheduler work like never done before for a Operating Systems homework, but I have no idea how to do it. I’ve tried writing a simple C program that counts the lines of big text files, but it executes too fast and I can’t measure the effectiveness of my scheduler with it. This is worth 25% of my grade, any help would be much appreciated.

Advertisement

Answer

The previous answer appears more CPU bound than i/o bound from my tests.

I suggest opening many files and seeking like crazy within each file using the low-level non-cached C routines. Here is the C code that performs the seeks:

JavaScript

Then, in a shell, run it through find for every file in the filesystem:

JavaScript

On my system it works quite well, one can spot the rcu_sched task:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement