Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r69017 - in sandbox/async/libs/async: doc/html/toward_boost_async/users_guide example
From: vicente.botet_at_[hidden]
Date: 2011-02-18 20:06:47


Author: viboes
Date: 2011-02-18 20:06:37 EST (Fri, 18 Feb 2011)
New Revision: 69017
URL: http://svn.boost.org/trac/boost/changeset/69017

Log:
Async
Removed:
   sandbox/async/libs/async/doc/html/toward_boost_async/users_guide/glosary.html
Text files modified:
   sandbox/async/libs/async/example/parallel_sort.cpp | 6 +++---
   sandbox/async/libs/async/example/parallel_sort2.cpp | 6 +++---
   2 files changed, 6 insertions(+), 6 deletions(-)

Deleted: sandbox/async/libs/async/doc/html/toward_boost_async/users_guide/glosary.html
==============================================================================
--- sandbox/async/libs/async/doc/html/toward_boost_async/users_guide/glosary.html 2011-02-18 20:06:37 EST (Fri, 18 Feb 2011)
+++ (empty file)
@@ -1,56 +0,0 @@
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Glossary</title>
-<link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
-<link rel="start" href="../../index.html" title="Toward Boost Async">
-<link rel="up" href="../users_guide.html" title="Users'Guide">
-<link rel="prev" href="bibliography.html" title="References">
-<link rel="next" href="../reference.html" title="Reference">
-</head>
-<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%"><tr>
-<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../boost.png"></td>
-<td align="center">Home</td>
-<td align="center">Libraries</td>
-<td align="center">People</td>
-<td align="center">FAQ</td>
-<td align="center">More</td>
-</tr></table>
-<hr>
-<div class="spirit-nav">
-<a accesskey="p" href="bibliography.html"><img src="../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../users_guide.html"><img src="../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="../reference.html"><img src="../../../../../../doc/html/images/next.png" alt="Next"></a>
-</div>
-<div class="section" lang="en">
-<div class="titlepage"><div><div><h3 class="title">
-<a name="toward_boost_async.users_guide.glosary"></a><a class="link" href="glosary.html" title="Glossary"> Glossary</a>
-</h3></div></div></div>
-<div class="variablelist">
-<p class="title"><b></b></p>
-<dl>
-<dt><span class="term">AE</span></dt>
-<dd><p>
- Asynchronous executor
- </p></dd>
-<dt><span class="term">ACT</span></dt>
-<dd><p>
- Asynchronous completion token
- </p></dd>
-</dl>
-</div>
-</div>
-<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
-<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright © 2008 -2009 Vicente J. Botet Escriba<p>
- Distributed under the Boost Software License, Version 1.0. (See accompanying
- file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- </p>
-</div></td>
-</tr></table>
-<hr>
-<div class="spirit-nav">
-<a accesskey="p" href="bibliography.html"><img src="../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../users_guide.html"><img src="../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="../reference.html"><img src="../../../../../../doc/html/images/next.png" alt="Next"></a>
-</div>
-</body>
-</html>

Modified: sandbox/async/libs/async/example/parallel_sort.cpp
==============================================================================
--- sandbox/async/libs/async/example/parallel_sort.cpp (original)
+++ sandbox/async/libs/async/example/parallel_sort.cpp 2011-02-18 20:06:37 EST (Fri, 18 Feb 2011)
@@ -36,11 +36,11 @@
     boost::posix_time::ptime start_;
 public:
     scoped_timer()
- : start_(boost::posix_time::microsec_clock::universal_time())
+ : start_(boost::posix_time::microsec_clock::universal_time())
     {}
     ~scoped_timer() {
- boost::posix_time::ptime stop( boost::posix_time::microsec_clock::universal_time() );
- std::cout << " " << ( stop - start_).total_milliseconds() << " milli seconds" << std::endl;
+ boost::posix_time::ptime stop( boost::posix_time::microsec_clock::universal_time() );
+ std::cout << " " << ( stop - start_).total_milliseconds() << " milli seconds" << std::endl;
     }
 };
 

Modified: sandbox/async/libs/async/example/parallel_sort2.cpp
==============================================================================
--- sandbox/async/libs/async/example/parallel_sort2.cpp (original)
+++ sandbox/async/libs/async/example/parallel_sort2.cpp 2011-02-18 20:06:37 EST (Fri, 18 Feb 2011)
@@ -71,11 +71,11 @@
     boost::posix_time::ptime start_;
 public:
     scoped_timer()
- : start_(boost::posix_time::microsec_clock::universal_time())
+ : start_(boost::posix_time::microsec_clock::universal_time())
     {}
     ~scoped_timer() {
- boost::posix_time::ptime stop( boost::posix_time::microsec_clock::universal_time() );
- std::cout << " " << ( stop - start_).total_milliseconds() << " milli seconds" << std::endl;
+ boost::posix_time::ptime stop( boost::posix_time::microsec_clock::universal_time() );
+ std::cout << " " << ( stop - start_).total_milliseconds() << " milli seconds" << std::endl;
     }
 };
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk