diff options
author | Thomas Schwinge <thomas@schwinge.name> | 2011-11-05 23:07:10 +0100 |
---|---|---|
committer | Thomas Schwinge <thomas@schwinge.name> | 2011-11-05 23:07:10 +0100 |
commit | ba985e9b5f15933e9b8c33d63cf903972c75e913 (patch) | |
tree | ce6e548ba05439b6971062718e808c32a5faefcf /open_issues/performance/io_system/test-mach.c | |
parent | 3ebdfe56c9cde5128b5f9da1be2f82104049fa7b (diff) | |
parent | 2e315ef11db39e8ee0a0decc054801521ee049dd (diff) | |
download | web-ba985e9b5f15933e9b8c33d63cf903972c75e913.tar.gz web-ba985e9b5f15933e9b8c33d63cf903972c75e913.tar.bz2 web-ba985e9b5f15933e9b8c33d63cf903972c75e913.zip |
Merge commit '2e315ef11db39e8ee0a0decc054801521ee049dd'
Diffstat (limited to 'open_issues/performance/io_system/test-mach.c')
-rw-r--r-- | open_issues/performance/io_system/test-mach.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/open_issues/performance/io_system/test-mach.c b/open_issues/performance/io_system/test-mach.c new file mode 100644 index 00000000..90337346 --- /dev/null +++ b/open_issues/performance/io_system/test-mach.c @@ -0,0 +1,19 @@ +#define _GNU_SOURCE +#include <stdio.h> +#include <fcntl.h> +#include <mach/mach.h> +#define N 1000000 +int main(void) { + struct timeval tv1, tv2; + int i; + task_t task; + task = mach_task_self(); + mach_port_urefs_t refs; + gettimeofday(&tv1, NULL); + for (i = 0; i < N; i++) { + mach_port_get_refs(task, task, MACH_PORT_RIGHT_RECEIVE, &refs); + } + gettimeofday(&tv2, NULL); + printf("%fµs\n", (float)((tv2.tv_sec-tv1.tv_sec) * 1000000 + tv2.tv_usec - tv1.tv_usec)/N); + return 0; +} |