Add gtod_cpu option for pinning gettimeofday() to a single CPU

Similar to what real life products sometimes do, offload gettimeofday()
calls to a single CPU and have that update the current time into a shared
memory location. This option pins a specific CPU for that job, and excludes
it from participating in any of the IO jobs.

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
diff --git a/os/os.h b/os/os.h
index 1cff494..823b039 100644
--- a/os/os.h
+++ b/os/os.h
@@ -40,7 +40,8 @@
 
 #ifndef FIO_HAVE_CPU_AFFINITY
 #define fio_setaffinity(td)		(0)
-#define fio_getaffinity(pid, mask)	do { } while(0)
+#define fio_getaffinity(pid, mask)	do { } while (0)
+#define fio_cpu_clear(mask, cpu)	do { } while (0)
 #endif
 
 #ifndef FIO_HAVE_IOPRIO