# | Line 90 | Line 90 | int GoogleTron::Output() | |
---|---|---|
90 | Sleep(); | |
91 | ||
92 | _synchronized (queueLock) | |
93 | < | if (queue.size()) |
93 | > | if (queue.GetSize()) |
94 | { | |
95 | xml::ScopeElement url_(writer, _B("url")); | |
96 | < | const Url &url(queue.front()); |
96 | > | const Url &url(queue.Front()); |
97 | ||
98 | { | |
99 | xml::ScopeElement loc(writer, _B("loc")); | |
# | Line 119 | Line 119 | int GoogleTron::Output() | |
119 | writer.OutputText(url.GetPriority()); | |
120 | } | |
121 | ||
122 | < | queue.pop(); |
122 | > | queue.Pop(); |
123 | } | |
124 | } | |
125 | while (working); |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |