GlobalDescriptor.html 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <meta name="generator" content="Docutils 0.6: http://docutils.sourceforge.net/" />
  7. <title>Parallel BGL Concept Global Descriptor</title>
  8. <link rel="stylesheet" href="../../../../rst.css" type="text/css" />
  9. </head>
  10. <body>
  11. <div class="document" id="logo-concept-global-descriptor">
  12. <h1 class="title"><a class="reference external" href="http://www.osl.iu.edu/research/pbgl"><img align="middle" alt="Parallel BGL" class="align-middle" src="pbgl-logo.png" /></a> Concept Global Descriptor</h1>
  13. <!-- Copyright (C) 2004-2008 The Trustees of Indiana University.
  14. Use, modification and distribution is subject to the Boost Software
  15. License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  16. http://www.boost.org/LICENSE_1_0.txt) -->
  17. <div class="contents topic" id="contents">
  18. <p class="topic-title first">Contents</p>
  19. <ul class="simple">
  20. <li><a class="reference internal" href="#description" id="id1">Description</a></li>
  21. <li><a class="reference internal" href="#refinement-of" id="id2">Refinement of</a></li>
  22. <li><a class="reference internal" href="#notation" id="id3">Notation</a></li>
  23. <li><a class="reference internal" href="#associated-types" id="id4">Associated types</a></li>
  24. <li><a class="reference internal" href="#valid-expressions" id="id5">Valid Expressions</a></li>
  25. </ul>
  26. </div>
  27. <div class="section" id="description">
  28. <h1><a class="toc-backref" href="#id1">Description</a></h1>
  29. <p>A global descriptor is an object that represents an entity that is
  30. owned by some process and may reside in an address space not
  31. accessible to the currently-executing process. The global descriptor
  32. consists of two parts: the <em>owner</em> of the entity, which is the
  33. identifier of that process in which the entity resides, and a <em>local
  34. descriptor</em>, that uniquely identifies the entity with the address
  35. space of the owner.</p>
  36. </div>
  37. <div class="section" id="refinement-of">
  38. <h1><a class="toc-backref" href="#id2">Refinement of</a></h1>
  39. <blockquote>
  40. <ul class="simple">
  41. <li><a class="reference external" href="http://www.sgi.com/tech/stl/DefaultConstructible.html">Default Constructible</a></li>
  42. <li><a class="reference external" href="http://www.sgi.com/tech/stl/Assignable.html">Assignable</a></li>
  43. </ul>
  44. </blockquote>
  45. </div>
  46. <div class="section" id="notation">
  47. <h1><a class="toc-backref" href="#id3">Notation</a></h1>
  48. <dl class="docutils">
  49. <dt>X</dt>
  50. <dd>A type that models the Global Descriptor concept.</dd>
  51. <dt>x</dt>
  52. <dd>Object of type X</dd>
  53. </dl>
  54. </div>
  55. <div class="section" id="associated-types">
  56. <h1><a class="toc-backref" href="#id4">Associated types</a></h1>
  57. <table border="1" class="docutils">
  58. <colgroup>
  59. <col width="23%" />
  60. <col width="29%" />
  61. <col width="48%" />
  62. </colgroup>
  63. <tbody valign="top">
  64. <tr><td>Process ID type</td>
  65. <td><tt class="docutils literal"><span class="pre">process_id_type</span></tt></td>
  66. <td>Determined by the process group
  67. associated with type X.</td>
  68. </tr>
  69. <tr><td>Local descriptor
  70. type</td>
  71. <td><tt class="docutils literal"><span class="pre">local_type</span></tt></td>
  72. <td>Determined by the data structure
  73. the descriptor accesses.
  74. Must model <a class="reference external" href="http://www.sgi.com/tech/stl/EqualityComparable.html">Equality Comparable</a>
  75. and <a class="reference external" href="http://www.sgi.com/tech/stl/CopyConstructible.html">Copy Constructible</a>.</td>
  76. </tr>
  77. </tbody>
  78. </table>
  79. </div>
  80. <div class="section" id="valid-expressions">
  81. <h1><a class="toc-backref" href="#id5">Valid Expressions</a></h1>
  82. <table border="1" class="docutils">
  83. <colgroup>
  84. <col width="17%" />
  85. <col width="22%" />
  86. <col width="22%" />
  87. <col width="39%" />
  88. </colgroup>
  89. <thead valign="bottom">
  90. <tr><th class="head">Name</th>
  91. <th class="head">Expression</th>
  92. <th class="head">Type</th>
  93. <th class="head">Semantics</th>
  94. </tr>
  95. </thead>
  96. <tbody valign="top">
  97. <tr><td>Owner</td>
  98. <td><tt class="docutils literal"><span class="pre">owner(x)</span></tt></td>
  99. <td><tt class="docutils literal"><span class="pre">process_id_type</span></tt></td>
  100. <td>Returns the owner of <tt class="docutils literal"><span class="pre">x</span></tt>.</td>
  101. </tr>
  102. <tr><td>Local descriptor</td>
  103. <td><tt class="docutils literal"><span class="pre">local(x)</span></tt></td>
  104. <td><tt class="docutils literal"><span class="pre">local_type</span></tt></td>
  105. <td>Returns the local descriptor
  106. uniquely identifying <tt class="docutils literal"><span class="pre">x</span></tt>.</td>
  107. </tr>
  108. </tbody>
  109. </table>
  110. <hr class="docutils" />
  111. <p>Copyright (C) 2005 The Trustees of Indiana University.</p>
  112. <p>Authors: Douglas Gregor and Andrew Lumsdaine</p>
  113. </div>
  114. </div>
  115. <div class="footer">
  116. <hr class="footer" />
  117. Generated on: 2009-05-31 00:22 UTC.
  118. Generated by <a class="reference external" href="http://docutils.sourceforge.net/">Docutils</a> from <a class="reference external" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source.
  119. </div>
  120. </body>
  121. </html>