View | Details | Raw Unified | Return to bug 54868
Collapse All | Expand All

(-)doc/en_US.ISO8859-1/books/developers-handbook/boot/chapter.sgml (+1 lines)
Lines 550-555 Link Here
550
	  <entry>This function allocates and fills out a Page Table
550
	  <entry>This function allocates and fills out a Page Table
551
	    Directory at the top of the kernel memory area.</entry>
551
	    Directory at the top of the kernel memory area.</entry>
552
        </row>
552
        </row>
553
	</tbody>
553
      </tgroup>
554
      </tgroup>
554
    </informaltable>
555
    </informaltable>
555
556
(-)doc/en_US.ISO8859-1/books/developers-handbook/jail/chapter.sgml (-2 / +2 lines)
Lines 70-76 Link Here
70
        <para>In <filename>jail.c</filename>, the first thing I would
70
        <para>In <filename>jail.c</filename>, the first thing I would
71
          note is the declaration of an important structure
71
          note is the declaration of an important structure
72
          <literal>struct jail j</literal>; which was included from
72
          <literal>struct jail j</literal>; which was included from
73
          <filename>/usr/include/sys/jail.h</filename>.
73
          <filename>/usr/include/sys/jail.h</filename>.</para>
74
74
75
        <para>The definition of the jail structure is:</para>
75
        <para>The definition of the jail structure is:</para>
76
76
Lines 126-132 Link Here
126
        <para>Finally, the userland program jails the process, and
126
        <para>Finally, the userland program jails the process, and
127
          executes the command specified. Jail now becomes an
127
          executes the command specified. Jail now becomes an
128
          imprisoned process itself and forks a child process which
128
          imprisoned process itself and forks a child process which
129
          then executes the command given using &man.execv.3;
129
          then executes the command given using &man.execv.3;</para>
130
130
131
        <programlisting><filename>/usr/src/sys/usr.sbin/jail/jail.c</filename>
131
        <programlisting><filename>/usr/src/sys/usr.sbin/jail/jail.c</filename>
132
i = jail(<![CDATA[&j]]>); 
132
i = jail(<![CDATA[&j]]>); 
(-)doc/en_US.ISO8859-1/books/developers-handbook/mac/chapter.sgml (-1 / +3 lines)
Lines 941-946 Link Here
941
              <row>
941
              <row>
942
                <entry><parameter>label</parameter></entry>
942
                <entry><parameter>label</parameter></entry>
943
                <entry>Policy label to initialize</entry>
943
                <entry>Policy label to initialize</entry>
944
	      </row>
944
            </tbody>
945
            </tbody>
945
          </tgroup>
946
          </tgroup>
946
        </informaltable>
947
        </informaltable>
Lines 1051-1056 Link Here
1051
                <entry>Label to be filled in</entry>
1052
                <entry>Label to be filled in</entry>
1052
              </row>
1053
              </row>
1053
            </tbody>
1054
            </tbody>
1055
	  </tgroup>
1054
        </informaltable>
1056
        </informaltable>
1055
1057
1056
        <para>Initialize a label for a newly instantiated pipe.</para>
1058
        <para>Initialize a label for a newly instantiated pipe.</para>
Lines 1439-1445 Link Here
1439
              
1441
              
1440
              <row>
1442
              <row>
1441
                <entry><parameter>fslabel</parameter></entry>
1443
                <entry><parameter>fslabel</parameter></entry>
1442
                <entry>File system label being destroyed>
1444
                <entry>File system label being destroyed></entry>
1443
              </row>
1445
              </row>
1444
            </tbody>
1446
            </tbody>
1445
          </tgroup>
1447
          </tgroup>
(-)doc/en_US.ISO8859-1/books/developers-handbook/newbus/chapter.sgml (-1 / +1 lines)
Lines 259-265 Link Here
259
    management (<emphasis><literal>alloc_resource</literal></emphasis>, 
259
    management (<emphasis><literal>alloc_resource</literal></emphasis>, 
260
    <emphasis><literal>activate_resource</literal></emphasis>, 
260
    <emphasis><literal>activate_resource</literal></emphasis>, 
261
    <emphasis><literal>deactivate_resource</literal></emphasis>, 
261
    <emphasis><literal>deactivate_resource</literal></emphasis>, 
262
    <emphasis><literal>release_resource</literal></emphasis>).
262
    <emphasis><literal>release_resource</literal></emphasis>).</para>
263
    
263
    
264
    <para>Many methods in the <quote>bus</quote> interface are performing 
264
    <para>Many methods in the <quote>bus</quote> interface are performing 
265
    services for some child of the bus device.  These methods would normally 
265
    services for some child of the bus device.  These methods would normally 
(-)doc/en_US.ISO8859-1/books/developers-handbook/sound/chapter.sgml (+3 lines)
Lines 36-41 Link Here
36
          <emphasis>Voxware</emphasis> interface, allowing common
36
          <emphasis>Voxware</emphasis> interface, allowing common
37
          multimedia applications to be ported without
37
          multimedia applications to be ported without
38
          modification.</para>
38
          modification.</para>
39
      </listitem>
39
      <listitem>
40
      <listitem>
40
        <para>Common code for processing sound data (format
41
        <para>Common code for processing sound data (format
41
          conversions, virtual channels).</para>
42
          conversions, virtual channels).</para>
Lines 276-281 Link Here
276
          </listitem>
277
          </listitem>
277
278
278
        </itemizedlist>
279
        </itemizedlist>
280
281
      </sect3>
279
282
280
      <sect3 id="xxxchannel-init">
283
      <sect3 id="xxxchannel-init">
281
        <title>channel_init</title>
284
        <title>channel_init</title>

Return to bug 54868