aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flthr.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-06-07 14:13:50 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-06-07 14:13:50 +0000
commit86806ae2e1bb2799ff57ad8279be922e51e082e7 (patch)
treebe66c648156b0ca277723bfedb0e77e77564cfbf /externals/grill/flext/source/flthr.cpp
parent313b88bebb43ba33af9f3dc4d967607137043662 (diff)
changed initialization functions accordingly
small fix slimmed object data structures digest one-element list messages as single atoms made flext::Forward threadsafe small fixes simplified message analysis svn path=/trunk/; revision=3125
Diffstat (limited to 'externals/grill/flext/source/flthr.cpp')
-rw-r--r--externals/grill/flext/source/flthr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/grill/flext/source/flthr.cpp b/externals/grill/flext/source/flthr.cpp
index 56a9c9a2..f56ab096 100644
--- a/externals/grill/flext/source/flthr.cpp
+++ b/externals/grill/flext/source/flthr.cpp
@@ -625,7 +625,7 @@ bool flext::ThrCond::TimedWait(double ftm)
ftime(&tmb);
#endif
tm.tv_nsec = tmb.millitm*1000000;
- tm.tv_sec = tmb.time;
+ tm.tv_sec = (long)tmb.time;
#else // POSIX
#if 0 // find out when the following is defined
clock_gettime(CLOCK_REALTIME,tm);