CHips L MINI SHELL

CHips L pro

Current Path : /proc/2/root/usr/share/doc/db4-devel-4.7.25/porting/
Upload File :
Current File : //proc/2/root/usr/share/doc/db4-devel-4.7.25/porting/index.html

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Porting Berkeley DB</title>
    <link rel="stylesheet" href="gettingStarted.css" type="text/css" />
    <meta name="generator" content="DocBook XSL Stylesheets V1.62.4" />
    <link rel="home" href="index.html" title="Porting Berkeley DB" />
    <link rel="next" href="preface.html" title="Preface" />
  </head>
  <body>
    <div class="navheader">
      <table width="100%" summary="Navigation header">
        <tr>
          <th colspan="3" align="center">Porting Berkeley DB</th>
        </tr>
        <tr>
          <td width="20%" align="left"> </td>
          <th width="60%" align="center"> </th>
          <td width="20%" align="right"> <a accesskey="n" href="preface.html">Next</a></td>
        </tr>
      </table>
      <hr />
    </div>
    <div class="book" lang="en" xml:lang="en">
      <div class="titlepage">
        <div>
          <div>
            <h1 class="title"><a id="id613728"></a>Porting Berkeley DB</h1>
          </div>
          <div>
            <div class="legalnotice">
              <p class="legalnotice-title">
                <b>Legal Notice</b>
              </p>
              <p>
        This documentation is distributed under an open source license.
        You may review the terms of this license at:
        <a href="http://www.oracle.com/technology/software/products/berkeley-db/htdocs/oslicense.html" target="_top">http://www.oracle.com/technology/software/products/berkeley-db/htdocs/oslicense.html</a>
        
        
    </p>
              <p>
            Oracle, Berkeley DB,
            
            
            and
            Sleepycat are trademarks or registered trademarks of
            Oracle. All rights to these marks are reserved.
            No third-party use is permitted without the
            express prior written consent of Oracle.
    </p>
              <p>
        To obtain a copy of this document's original source code, please
        submit a request to the Oracle Technology Network forum at:
        <a href="http://forums.oracle.com/forums/forum.jspa?forumID=271" target="_top">http://forums.oracle.com/forums/forum.jspa?forumID=271</a>
        
        
    </p>
            </div>
          </div>
          <div>
            <p class="pubdate">4/25/2008</p>
          </div>
        </div>
        <div></div>
        <hr />
      </div>
      <div class="toc">
        <p>
          <b>Table of Contents</b>
        </p>
        <dl>
          <dt>
            <span class="preface">
              <a href="preface.html">Preface</a>
            </span>
          </dt>
          <dd>
            <dl>
              <dt>
                <span class="sect1">
                  <a href="preface.html#conventions">Conventions Used in this Book</a>
                </span>
              </dt>
              <dd>
                <dl>
                  <dt>
                    <span class="sect2">
                      <a href="preface.html#audience">Audience</a>
                    </span>
                  </dt>
                  <dt>
                    <span class="sect2">
                      <a href="preface.html#moreinfo">For More Information</a>
                    </span>
                  </dt>
                </dl>
              </dd>
            </dl>
          </dd>
          <dt>
            <span class="chapter">
              <a href="introduction.html">1. Introduction to Porting Berkeley DB </a>
            </span>
          </dt>
          <dd>
            <dl>
              <dt>
                <span class="sect1">
                  <a href="introduction.html#porttypes">Types of Berkeley DB ports</a>
                </span>
              </dt>
              <dd>
                <dl>
                  <dt>
                    <span class="sect2">
                      <a href="introduction.html#id793975">When Oracle Has Agreed to Support Berkeley DB on the New Platform</a>
                    </span>
                  </dt>
                  <dt>
                    <span class="sect2">
                      <a href="introduction.html#id794049">When Oracle has Not Agreed to Support Berkeley DB on the New Platform</a>
                    </span>
                  </dt>
                </dl>
              </dd>
              <dt>
                <span class="sect1">
                  <a href="portprocess.html">Berkeley DB Porting Process</a>
                </span>
              </dt>
            </dl>
          </dd>
          <dt>
            <span class="chapter">
              <a href="newbinary.html">2. Creating a New Berkeley DB Binary</a>
            </span>
          </dt>
          <dd>
            <dl>
              <dt>
                <span class="sect1">
                  <a href="newbinary.html#basebuild">
Creating a Base Build of Berkeley DB
</a>
                </span>
              </dt>
              <dt>
                <span class="sect1">
                  <a href="modscope.html">
Determining the Scope of the Modifications
</a>
                </span>
              </dt>
              <dd>
                <dl>
                  <dt>
                    <span class="sect2">
                      <a href="modscope.html#osfunc">
Do Changes Need to be Made to the Operating System Functionality?
</a>
                    </span>
                  </dt>
                  <dt>
                    <span class="sect2">
                      <a href="modscope.html#standardfunc">Are Some Standard Functions Missing on the Target Platform?</a>
                    </span>
                  </dt>
                  <dt>
                    <span class="sect2">
                      <a href="modscope.html#sharedmem">How Will the Port Handle Shared Memory?</a>
                    </span>
                  </dt>
                  <dt>
                    <span class="sect2">
                      <a href="modscope.html#typemutex">What Type of Mutexes Will the Port Use?</a>
                    </span>
                  </dt>
                  <dt>
                    <span class="sect2">
                      <a href="modscope.html#otherchanges">Do Any Other Changes Need to be Made?</a>
                    </span>
                  </dt>
                </dl>
              </dd>
              <dt>
                <span class="sect1">
                  <a href="buildtarget.html"> Building on the Target Platform</a>
                </span>
              </dt>
            </dl>
          </dd>
          <dt>
            <span class="chapter">
              <a href="testport.html">3. Testing and Certifying the Port</a>
            </span>
          </dt>
          <dd>
            <dl>
              <dt>
                <span class="sect1">
                  <a href="testport.html#testtypes">Types of Tests for Berkeley DB</a>
                </span>
              </dt>
              <dt>
                <span class="sect1">
                  <a href="modifytest.html">Modifying the Tests</a>
                </span>
              </dt>
              <dt>
                <span class="sect1">
                  <a href="testrun.html">Running the Tests</a>
                </span>
              </dt>
              <dt>
                <span class="sect1">
                  <a href="testreview.html">Reviewing the Results of the Tests</a>
                </span>
              </dt>
              <dt>
                <span class="sect1">
                  <a href="sourceintegrate.html">Integrating Changes into the Berkeley DB Source Code</a>
                </span>
              </dt>
              <dt>
                <span class="sect1">
                  <a href="certport.html">Certifying a Port of Berkeley DB</a>
                </span>
              </dt>
            </dl>
          </dd>
        </dl>
      </div>
    </div>
    <div class="navfooter">
      <hr />
      <table width="100%" summary="Navigation footer">
        <tr>
          <td width="40%" align="left"> </td>
          <td width="20%" align="center"> </td>
          <td width="40%" align="right"> <a accesskey="n" href="preface.html">Next</a></td>
        </tr>
        <tr>
          <td width="40%" align="left" valign="top"> </td>
          <td width="20%" align="center"> </td>
          <td width="40%" align="right" valign="top"> Preface</td>
        </tr>
      </table>
    </div>
  </body>
</html>

Copyright 2K16 - 2K18 Indonesian Hacker Rulez