Commits
Ryan Schmidt authored e58936e4a8a
1 - | --- source/backend/scene/view.cpp.orig 2012-06-10 06:53:44.000000000 -0500 |
2 - | +++ source/backend/scene/view.cpp 2012-09-05 05:07:51.000000000 -0500 |
3 - | |
4 - | } |
5 - | |
6 - | boost::xtime t; |
7 - | - boost::xtime_get (&t, boost::TIME_UTC); |
8 - | + boost::xtime_get (&t, boost::TIME_UTC_); |
9 - | t.sec += 3; |
10 - | |
11 - | // this will cause us to wait until the other threads are done. |
12 - | --- source/base/timer.cpp.orig 2012-02-05 14:54:15.000000000 -0600 |
13 - | +++ source/base/timer.cpp 2012-09-05 05:07:51.000000000 -0500 |
14 - | |
15 - | POV_LONG TimerDefault::ElapsedRealTime() const |
16 - | { |
17 - | boost::xtime t; |
18 - | - boost::xtime_get(&t, boost::TIME_UTC); |
19 - | + boost::xtime_get(&t, boost::TIME_UTC_); |
20 - | POV_LONG tt = (POV_LONG)(t.sec) * (POV_LONG)(1000000000) + (POV_LONG)(t.nsec); |
21 - | POV_LONG st = (POV_LONG)(realTimeStart.sec) * (POV_LONG)(1000000000) + (POV_LONG)(realTimeStart.nsec); |
22 - | return ((tt - st) / (POV_LONG)(1000000)); |
23 - | |
24 - | POV_LONG TimerDefault::ElapsedCPUTime() const |
25 - | { |
26 - | boost::xtime t; |
27 - | - boost::xtime_get(&t, boost::TIME_UTC); |
28 - | + boost::xtime_get(&t, boost::TIME_UTC_); |
29 - | POV_LONG tt = (POV_LONG)(t.sec) * (POV_LONG)(1000000000) + (POV_LONG)(t.nsec); |
30 - | POV_LONG st = (POV_LONG)(cpuTimeStart.sec) * (POV_LONG)(1000000000) + (POV_LONG)(cpuTimeStart.nsec); |
31 - | return ((tt - st) / (POV_LONG)(1000000)); |
32 - | |
33 - | |
34 - | void TimerDefault::Reset() |
35 - | { |
36 - | - boost::xtime_get(&realTimeStart, boost::TIME_UTC); |
37 - | - boost::xtime_get(&cpuTimeStart, boost::TIME_UTC); |
38 - | + boost::xtime_get(&realTimeStart, boost::TIME_UTC_); |
39 - | + boost::xtime_get(&cpuTimeStart, boost::TIME_UTC_); |
40 - | } |
41 - | |
42 - | } |
43 - | |
44 - | void Delay(unsigned int msec) |
45 - | { |
46 - | boost::xtime t; |
47 - | - boost::xtime_get(&t, boost::TIME_UTC); |
48 - | + boost::xtime_get(&t, boost::TIME_UTC_); |
49 - | POV_ULONG ns = (POV_ULONG)(t.sec) * (POV_ULONG)(1000000000) + (POV_ULONG)(t.nsec) + (POV_ULONG)(msec) * (POV_ULONG)(1000000); |
50 - | t.sec = (boost::xtime::xtime_sec_t)(ns / (POV_ULONG)(1000000000)); |
51 - | t.nsec = (boost::xtime::xtime_nsec_t)(ns % (POV_ULONG)(1000000000)); |
52 - | --- vfe/unix/platformbase.cpp.orig 2012-06-19 11:29:38.000000000 -0500 |
53 - | +++ vfe/unix/platformbase.cpp 2012-09-05 05:07:51.000000000 -0500 |
54 - | |
55 - | #else |
56 - | // taken from source/base/timer.cpp |
57 - | boost::xtime t; |
58 - | - boost::xtime_get(&t, boost::TIME_UTC); |
59 - | + boost::xtime_get(&t, boost::TIME_UTC_); |
60 - | POV_ULONG ns = (POV_ULONG)(t.sec) * (POV_ULONG)(1000000000) + (POV_ULONG)(t.nsec) + (POV_ULONG)(msec) * (POV_ULONG)(1000000); |
61 - | t.sec = (boost::xtime::xtime_sec_t)(ns / (POV_ULONG)(1000000000)); |
62 - | t.nsec = (boost::xtime::xtime_nsec_t)(ns % (POV_ULONG)(1000000000)); |
63 - | --- vfe/vfepovms.cpp.orig 2012-06-19 11:29:40.000000000 -0500 |
64 - | +++ vfe/vfepovms.cpp 2012-09-05 05:07:51.000000000 -0500 |
65 - | |
66 - | |
67 - | // TODO: have a shorter wait but loop, and check for system shutdown |
68 - | boost::xtime t; |
69 - | - boost::xtime_get (&t, boost::TIME_UTC); |
70 - | + boost::xtime_get (&t, boost::TIME_UTC_); |
71 - | t.nsec += 50000000 ; |
72 - | m_Event.timed_wait (lock, t); |
73 - | |
74 - | --- vfe/vfesession.cpp.orig 2012-06-19 11:29:40.000000000 -0500 |
75 - | +++ vfe/vfesession.cpp 2012-09-05 05:07:51.000000000 -0500 |
76 - | |
77 - | if (WaitTime > 0) |
78 - | { |
79 - | boost::xtime t; |
80 - | - boost::xtime_get (&t, boost::TIME_UTC); |
81 - | + boost::xtime_get (&t, boost::TIME_UTC_); |
82 - | t.sec += WaitTime / 1000 ; |
83 - | t.nsec += (WaitTime % 1000) * 1000000 ; |
84 - | m_SessionEvent.timed_wait (lock, t); |
85 - | |
86 - | // we can't call pause directly since it will result in a thread context |
87 - | // error. pause must be called from the context of the worker thread. |
88 - | boost::xtime t; |
89 - | - boost::xtime_get (&t, boost::TIME_UTC); |
90 - | + boost::xtime_get (&t, boost::TIME_UTC_); |
91 - | t.sec += 3 ; |
92 - | m_RequestFlag = rqPauseRequest; |
93 - | if (m_RequestEvent.timed_wait(lock, t) == false) |
94 - | |
95 - | // we can't call resume directly since it will result in a thread context |
96 - | // error. it must be called from the context of the worker thread. |
97 - | boost::xtime t; |
98 - | - boost::xtime_get (&t, boost::TIME_UTC); |
99 - | + boost::xtime_get (&t, boost::TIME_UTC_); |
100 - | t.sec += 3 ; |
101 - | m_RequestFlag = rqResumeRequest; |
102 - | if (m_RequestEvent.timed_wait(lock, t) == false) |
103 - | |
104 - | m_LastError = vfeNoError; |
105 - | |
106 - | boost::xtime t; |
107 - | - boost::xtime_get (&t, boost::TIME_UTC); |
108 - | + boost::xtime_get (&t, boost::TIME_UTC_); |
109 - | t.sec += 3 ; |
110 - | #ifdef _DEBUG |
111 - | t.sec += 120; |