summaryrefslogtreecommitdiff
path: root/tests/gem_fence_thrash.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2012-01-06 15:45:28 -0800
committerDaniel Vetter <daniel.vetter@ffwll.ch>2012-01-08 21:49:03 +0100
commit00751594dbdce9f1855ebe4105677a494fd7e36b (patch)
tree6ed10f1907c3ccf72147603133dd72795722676c /tests/gem_fence_thrash.c
parentf73dddc767b38988f6905ef56e95acad9fa4e8ca (diff)
Use sched_yield instead of pthread_yield
Despite the name implying it's a standard part of the POSIX threads API, pthread_yield is actually non-standard and less portable than sched_yield. For instance, Solaris only has sched_yield, and not pthread_yield. Since even the Linux man page suggests using sched_yield, just call that. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'tests/gem_fence_thrash.c')
-rw-r--r--tests/gem_fence_thrash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gem_fence_thrash.c b/tests/gem_fence_thrash.c
index 8ed4e08e..24147dee 100644
--- a/tests/gem_fence_thrash.c
+++ b/tests/gem_fence_thrash.c
@@ -110,7 +110,7 @@ bo_copy (void *_arg)
for (n = 0; n < 1000; n++) {
memcpy (a, b, OBJECT_SIZE);
- pthread_yield ();
+ sched_yield ();
}
return NULL;