summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@vmware.com>2009-06-08 14:33:55 +0200
committerJakob Bornecrantz <jakob@vmware.com>2009-06-08 15:01:48 +0200
commit8d2324d355e243b350a03b6d1a9b47f8986e496b (patch)
tree362158ebff68c0b9c181d653560bff2c3b0e8638 /src
parent8064a517b24169fa2b03f27bf70e3d62f54c830d (diff)
trace/rbug: Sleep on windows when blocked
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/trace/tr_context.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/trace/tr_context.c b/src/gallium/drivers/trace/tr_context.c
index dd5cca58dd..b845a649b8 100644
--- a/src/gallium/drivers/trace/tr_context.c
+++ b/src/gallium/drivers/trace/tr_context.c
@@ -131,7 +131,9 @@ trace_context_draw_block(struct trace_context *tr_ctx, int flag)
pipe_condvar_wait(tr_ctx->draw_cond, tr_ctx->draw_mutex);
#else
pipe_mutex_unlock(tr_ctx->draw_mutex);
- /* TODO sleep or use conditional */
+#ifdef PIPE_SUBSYSTEM_WINDOWS_USER
+ Sleep(1);
+#endif
pipe_mutex_lock(tr_ctx->draw_mutex);
#endif
}