Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Eagar <joeedh@gmail.com>2010-01-23 14:32:21 +0300
committerJoseph Eagar <joeedh@gmail.com>2010-01-23 14:32:21 +0300
commitc71ace02c24987c7929e9510c2212692b7ac7649 (patch)
tree3a65f6dd32cf98531150228aa591572dadbc9a49
parent7ef85aa41ff57cbe5395f83d4ea23b651287b78d (diff)
accidentally commited a patch that modifies wait_timeout, which I've not thourougly tested, but I'm not reverting it since it's needed to make msvc compile. it's only used if compiling with windows anyway. patch by mitchel stokes.
-rw-r--r--source/blender/blenlib/intern/threads.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/threads.c b/source/blender/blenlib/intern/threads.c
index ad89a61a2a7..610984f2d9c 100644
--- a/source/blender/blenlib/intern/threads.c
+++ b/source/blender/blenlib/intern/threads.c
@@ -541,6 +541,7 @@ static void wait_timeout(struct timespec *timeout, int ms)
timeout->tv_nsec = x*1000;
#else
+ /*XXX test me*/
time_t now;
ldiv_t div_result;
long x;