Author: paul
Date: 2007-03-28 00:24:16 +0200 (Wed, 28 Mar 2007)
New Revision: 5583
Log:
r18243@frost: paul | 2007-03-27 16:42:11 -0500
Add section/manpage for mysql_waitpid.
Modified:
trunk/refman-4.1/client-utility-programs.xml
trunk/refman-5.0/client-utility-programs.xml
trunk/refman-5.1/client-utility-programs.xml
Property changes on: trunk
___________________________________________________________________
Name: svk:merge
- 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:22309
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:18242
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:14593
+ 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:22309
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:18243
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:14593
Modified: trunk/refman-4.1/client-utility-programs.xml
===================================================================
--- trunk/refman-4.1/client-utility-programs.xml 2007-03-27 22:24:01 UTC (rev 5582)
+++ trunk/refman-4.1/client-utility-programs.xml 2007-03-27 22:24:16 UTC (rev 5583)
Changed blocks: 2, Lines Added: 164, Lines Deleted: 0; 5449 bytes
@@ -354,6 +354,21 @@
<listitem>
<para>
<indexterm>
+ <primary>mysql_waitpid</primary>
+ </indexterm>
+
+ <command>mysql_waitpid</command>
+ </para>
+
+ <para>
+ A utility that kills the process with a given process ID. See
+ <xref linkend="mysql-waitpid"/>.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <indexterm>
<primary>mysql_zap</primary>
</indexterm>
@@ -14113,6 +14128,155 @@
</section>
+ <section id="fake-id-for-mysql-waitpid-manpage-section-wrapper">
+
+ <title>fake title for mysql_waitpid manpage section wrapper</title>
+
+ <refentry id="mysql-waitpid">
+
+ <indexterm>
+ <primary>mysql_waitpid</primary>
+ </indexterm>
+
+ <refmeta>
+ <refentrytitle><command>mysql_waitpid</command></refentrytitle>
+
+ <manvolnum>1</manvolnum>
+ <refmiscinfo class="manual">MySQL Database System</refmiscinfo>
+ <refmiscinfo class="source">MySQL</refmiscinfo>
+ <refmiscinfo class="version">¤t-series;</refmiscinfo>
+ <refmiscinfo class="refman">Kill Process and Wait for Its Termination</refmiscinfo>
+ </refmeta>
+
+ <refnamediv>
+ <refname>mysql_waitpid</refname>
+
+ <refpurpose>kill process and wait for its termination</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>mysql_waitpid [<replaceable>options</replaceable>] <replaceable>pid</replaceable> <replaceable>wait_time</replaceable></command>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsection id="mysql-waitpid-description">
+
+ <title>Description</title>
+
+ <para>
+ <command>mysql_waitpid</command> signals a process to
+ terminate and waits for the process to exit. It uses the
+ <literal>kill()</literal> system call and Unix signals, so it
+ runs on Unix and Unix-like systems.
+ </para>
+
+ <para>
+ Invoke <command>mysql_waitpid</command> like this:
+ </para>
+
+<programlisting>
+shell> <userinput>mysql_waitpid [<replaceable>options</replaceable>] <replaceable>pid</replaceable> <replaceable>wait_time</replaceable></userinput>
+</programlisting>
+
+ <para>
+ <command>mysql_waitpid</command> sends signal 0 to the process
+ identified by <replaceable>pid</replaceable> and waits up to
+ <replaceable>wait_time</replaceable> seconds for the process
+ to terminate. <replaceable>pid</replaceable> and
+ <replaceable>wait_time</replaceable> must be positive
+ integers.
+ </para>
+
+ <para>
+ If process termination occurs within the wait time or the
+ process does not exist, <command>mysql_waitpid</command>
+ returns 0. Otherwise, it returns 1.
+ </para>
+
+ <para>
+ If the <literal>kill()</literal> system call cannot handle
+ signal 0, <command>mysql_waitpid()</command> uses signal 1
+ instead.
+ </para>
+
+ <para>
+ <command>mysql_waitpid</command> understands the following
+ options:
+ </para>
+
+ <itemizedlist>
+
+ <listitem>
+ <para>
+ <indexterm>
+ <primary>mysql_waitpid</primary>
+ <secondary>help option</secondary>
+ </indexterm>
+
+ <indexterm>
+ <primary>help option</primary>
+ <secondary>mysql_waitpid</secondary>
+ </indexterm>
+
+ <option>--help</option>, <option>-?</option>,
+ <option>-I</option>
+ </para>
+
+ <para>
+ Display a help message and exit.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <indexterm>
+ <primary>mysql_waitpid</primary>
+ <secondary>verbose option</secondary>
+ </indexterm>
+
+ <indexterm>
+ <primary>verbose option</primary>
+ <secondary>mysql_waitpid</secondary>
+ </indexterm>
+
+ <option>--verbose</option>, <option>-v</option>
+ </para>
+
+ <para>
+ Verbose mode. Display a warning if signal 0 could not be
+ used and signal 1 is used instead.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <indexterm>
+ <primary>mysql_waitpid</primary>
+ <secondary>version option</secondary>
+ </indexterm>
+
+ <indexterm>
+ <primary>version option</primary>
+ <secondary>mysql_waitpid</secondary>
+ </indexterm>
+
+ <option>--version</option>, <option>-V</option>
+ </para>
+
+ <para>
+ Display version information and exit.
+ </para>
+ </listitem>
+
+ </itemizedlist>
+
+ </refsection>
+
+ </refentry>
+
+ </section>
+
<section id="fake-id-for-mysql-zap-manpage-section-wrapper">
<title>fake title for mysql_zap manpage section wrapper</title>
Modified: trunk/refman-5.0/client-utility-programs.xml
===================================================================
--- trunk/refman-5.0/client-utility-programs.xml 2007-03-27 22:24:01 UTC (rev 5582)
+++ trunk/refman-5.0/client-utility-programs.xml 2007-03-27 22:24:16 UTC (rev 5583)
Changed blocks: 2, Lines Added: 164, Lines Deleted: 0; 5449 bytes
@@ -355,6 +355,21 @@
<listitem>
<para>
<indexterm>
+ <primary>mysql_waitpid</primary>
+ </indexterm>
+
+ <command>mysql_waitpid</command>
+ </para>
+
+ <para>
+ A utility that kills the process with a given process ID. See
+ <xref linkend="mysql-waitpid"/>.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <indexterm>
<primary>mysql_zap</primary>
</indexterm>
@@ -14582,6 +14597,155 @@
</section>
+ <section id="fake-id-for-mysql-waitpid-manpage-section-wrapper">
+
+ <title>fake title for mysql_waitpid manpage section wrapper</title>
+
+ <refentry id="mysql-waitpid">
+
+ <indexterm>
+ <primary>mysql_waitpid</primary>
+ </indexterm>
+
+ <refmeta>
+ <refentrytitle><command>mysql_waitpid</command></refentrytitle>
+
+ <manvolnum>1</manvolnum>
+ <refmiscinfo class="manual">MySQL Database System</refmiscinfo>
+ <refmiscinfo class="source">MySQL</refmiscinfo>
+ <refmiscinfo class="version">¤t-series;</refmiscinfo>
+ <refmiscinfo class="refman">Kill Process and Wait for Its Termination</refmiscinfo>
+ </refmeta>
+
+ <refnamediv>
+ <refname>mysql_waitpid</refname>
+
+ <refpurpose>kill process and wait for its termination</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>mysql_waitpid [<replaceable>options</replaceable>] <replaceable>pid</replaceable> <replaceable>wait_time</replaceable></command>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsection id="mysql-waitpid-description">
+
+ <title>Description</title>
+
+ <para>
+ <command>mysql_waitpid</command> signals a process to
+ terminate and waits for the process to exit. It uses the
+ <literal>kill()</literal> system call and Unix signals, so it
+ runs on Unix and Unix-like systems.
+ </para>
+
+ <para>
+ Invoke <command>mysql_waitpid</command> like this:
+ </para>
+
+<programlisting>
+shell> <userinput>mysql_waitpid [<replaceable>options</replaceable>] <replaceable>pid</replaceable> <replaceable>wait_time</replaceable></userinput>
+</programlisting>
+
+ <para>
+ <command>mysql_waitpid</command> sends signal 0 to the process
+ identified by <replaceable>pid</replaceable> and waits up to
+ <replaceable>wait_time</replaceable> seconds for the process
+ to terminate. <replaceable>pid</replaceable> and
+ <replaceable>wait_time</replaceable> must be positive
+ integers.
+ </para>
+
+ <para>
+ If process termination occurs within the wait time or the
+ process does not exist, <command>mysql_waitpid</command>
+ returns 0. Otherwise, it returns 1.
+ </para>
+
+ <para>
+ If the <literal>kill()</literal> system call cannot handle
+ signal 0, <command>mysql_waitpid()</command> uses signal 1
+ instead.
+ </para>
+
+ <para>
+ <command>mysql_waitpid</command> understands the following
+ options:
+ </para>
+
+ <itemizedlist>
+
+ <listitem>
+ <para>
+ <indexterm>
+ <primary>mysql_waitpid</primary>
+ <secondary>help option</secondary>
+ </indexterm>
+
+ <indexterm>
+ <primary>help option</primary>
+ <secondary>mysql_waitpid</secondary>
+ </indexterm>
+
+ <option>--help</option>, <option>-?</option>,
+ <option>-I</option>
+ </para>
+
+ <para>
+ Display a help message and exit.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <indexterm>
+ <primary>mysql_waitpid</primary>
+ <secondary>verbose option</secondary>
+ </indexterm>
+
+ <indexterm>
+ <primary>verbose option</primary>
+ <secondary>mysql_waitpid</secondary>
+ </indexterm>
+
+ <option>--verbose</option>, <option>-v</option>
+ </para>
+
+ <para>
+ Verbose mode. Display a warning if signal 0 could not be
+ used and signal 1 is used instead.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <indexterm>
+ <primary>mysql_waitpid</primary>
+ <secondary>version option</secondary>
+ </indexterm>
+
+ <indexterm>
+ <primary>version option</primary>
+ <secondary>mysql_waitpid</secondary>
+ </indexterm>
+
+ <option>--version</option>, <option>-V</option>
+ </para>
+
+ <para>
+ Display version information and exit.
+ </para>
+ </listitem>
+
+ </itemizedlist>
+
+ </refsection>
+
+ </refentry>
+
+ </section>
+
<section id="fake-id-for-mysql-zap-manpage-section-wrapper">
<title>fake title for mysql_zap manpage section wrapper</title>
Modified: trunk/refman-5.1/client-utility-programs.xml
===================================================================
--- trunk/refman-5.1/client-utility-programs.xml 2007-03-27 22:24:01 UTC (rev 5582)
+++ trunk/refman-5.1/client-utility-programs.xml 2007-03-27 22:24:16 UTC (rev 5583)
Changed blocks: 2, Lines Added: 164, Lines Deleted: 0; 5449 bytes
@@ -356,6 +356,21 @@
<listitem>
<para>
<indexterm>
+ <primary>mysql_waitpid</primary>
+ </indexterm>
+
+ <command>mysql_waitpid</command>
+ </para>
+
+ <para>
+ A utility that kills the process with a given process ID. See
+ <xref linkend="mysql-waitpid"/>.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <indexterm>
<primary>mysql_zap</primary>
</indexterm>
@@ -15335,6 +15350,155 @@
</section>
+ <section id="fake-id-for-mysql-waitpid-manpage-section-wrapper">
+
+ <title>fake title for mysql_waitpid manpage section wrapper</title>
+
+ <refentry id="mysql-waitpid">
+
+ <indexterm>
+ <primary>mysql_waitpid</primary>
+ </indexterm>
+
+ <refmeta>
+ <refentrytitle><command>mysql_waitpid</command></refentrytitle>
+
+ <manvolnum>1</manvolnum>
+ <refmiscinfo class="manual">MySQL Database System</refmiscinfo>
+ <refmiscinfo class="source">MySQL</refmiscinfo>
+ <refmiscinfo class="version">¤t-series;</refmiscinfo>
+ <refmiscinfo class="refman">Kill Process and Wait for Its Termination</refmiscinfo>
+ </refmeta>
+
+ <refnamediv>
+ <refname>mysql_waitpid</refname>
+
+ <refpurpose>kill process and wait for its termination</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>mysql_waitpid [<replaceable>options</replaceable>] <replaceable>pid</replaceable> <replaceable>wait_time</replaceable></command>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsection id="mysql-waitpid-description">
+
+ <title>Description</title>
+
+ <para>
+ <command>mysql_waitpid</command> signals a process to
+ terminate and waits for the process to exit. It uses the
+ <literal>kill()</literal> system call and Unix signals, so it
+ runs on Unix and Unix-like systems.
+ </para>
+
+ <para>
+ Invoke <command>mysql_waitpid</command> like this:
+ </para>
+
+<programlisting>
+shell> <userinput>mysql_waitpid [<replaceable>options</replaceable>] <replaceable>pid</replaceable> <replaceable>wait_time</replaceable></userinput>
+</programlisting>
+
+ <para>
+ <command>mysql_waitpid</command> sends signal 0 to the process
+ identified by <replaceable>pid</replaceable> and waits up to
+ <replaceable>wait_time</replaceable> seconds for the process
+ to terminate. <replaceable>pid</replaceable> and
+ <replaceable>wait_time</replaceable> must be positive
+ integers.
+ </para>
+
+ <para>
+ If process termination occurs within the wait time or the
+ process does not exist, <command>mysql_waitpid</command>
+ returns 0. Otherwise, it returns 1.
+ </para>
+
+ <para>
+ If the <literal>kill()</literal> system call cannot handle
+ signal 0, <command>mysql_waitpid()</command> uses signal 1
+ instead.
+ </para>
+
+ <para>
+ <command>mysql_waitpid</command> understands the following
+ options:
+ </para>
+
+ <itemizedlist>
+
+ <listitem>
+ <para>
+ <indexterm>
+ <primary>mysql_waitpid</primary>
+ <secondary>help option</secondary>
+ </indexterm>
+
+ <indexterm>
+ <primary>help option</primary>
+ <secondary>mysql_waitpid</secondary>
+ </indexterm>
+
+ <option>--help</option>, <option>-?</option>,
+ <option>-I</option>
+ </para>
+
+ <para>
+ Display a help message and exit.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <indexterm>
+ <primary>mysql_waitpid</primary>
+ <secondary>verbose option</secondary>
+ </indexterm>
+
+ <indexterm>
+ <primary>verbose option</primary>
+ <secondary>mysql_waitpid</secondary>
+ </indexterm>
+
+ <option>--verbose</option>, <option>-v</option>
+ </para>
+
+ <para>
+ Verbose mode. Display a warning if signal 0 could not be
+ used and signal 1 is used instead.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <indexterm>
+ <primary>mysql_waitpid</primary>
+ <secondary>version option</secondary>
+ </indexterm>
+
+ <indexterm>
+ <primary>version option</primary>
+ <secondary>mysql_waitpid</secondary>
+ </indexterm>
+
+ <option>--version</option>, <option>-V</option>
+ </para>
+
+ <para>
+ Display version information and exit.
+ </para>
+ </listitem>
+
+ </itemizedlist>
+
+ </refsection>
+
+ </refentry>
+
+ </section>
+
<section id="fake-id-for-mysql-zap-manpage-section-wrapper">
<title>fake title for mysql_zap manpage section wrapper</title>
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r5583 - in trunk: . refman-4.1 refman-5.0 refman-5.1 | paul | 28 Mar |