blob: 36e73244d91161cd9ad34c12128374aab3ef1803 [file] [log] [blame]
Howard Hinnantbded6c92010-10-05 16:44:40 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3<!-- Material used from: HTML 4.01 specs: http://www.w3.org/TR/html401/ -->
4<html>
5<head>
6 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
7 <title>&lt;atomic&gt; design</title>
8 <link type="text/css" rel="stylesheet" href="menu.css">
9 <link type="text/css" rel="stylesheet" href="content.css">
10</head>
11
12<body>
13<div id="menu">
14 <div>
15 <a href="http://llvm.org/">LLVM Home</a>
16 </div>
17
18 <div class="submenu">
19 <label>libc++ Info</label>
20 <a href="/index.html">About</a>
21 </div>
22
23 <div class="submenu">
24 <label>Quick Links</label>
25 <a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev">cfe-dev</a>
26 <a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits">cfe-commits</a>
27 <a href="http://llvm.org/bugs/">Bug Reports</a>
28 <a href="http://llvm.org/svn/llvm-project/libcxx/trunk/">Browse SVN</a>
29 <a href="http://llvm.org/viewvc/llvm-project/libcxx/trunk/">Browse ViewVC</a>
30 </div>
31</div>
32
33<div id="content">
34 <!--*********************************************************************-->
35 <h1>&lt;atomic&gt; design</h1>
36 <!--*********************************************************************-->
37
38<p>
Howard Hinnant79a77392010-10-06 16:15:10 +000039There are currently 3 designs under consideration. They differ in where most
40of the implmentation work is done. The functionality exposed to the customer
41should be identical (and conforming) for all three designs.
Howard Hinnantbded6c92010-10-05 16:44:40 +000042</p>
43
Howard Hinnant79a77392010-10-06 16:15:10 +000044<ol type="A">
Howard Hinnantbded6c92010-10-05 16:44:40 +000045<li>
Howard Hinnant79a77392010-10-06 16:15:10 +000046<a href="atomic_design_a.html">Minimal work for the library</a>
Howard Hinnantbded6c92010-10-05 16:44:40 +000047</li>
48<li>
Howard Hinnant79a77392010-10-06 16:15:10 +000049<a href="atomic_design_b.html">Something in between</a>
Howard Hinnantbded6c92010-10-05 16:44:40 +000050</li>
51<li>
Howard Hinnant79a77392010-10-06 16:15:10 +000052<a href="atomic_design_c.html">Minimal work for the front end</a>
Howard Hinnantbded6c92010-10-05 16:44:40 +000053</li>
Howard Hinnant79a77392010-10-06 16:15:10 +000054</ol>
Howard Hinnantbded6c92010-10-05 16:44:40 +000055
56</div>
57</body>
58</html>