<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Getting and error message &amp;quot;Error in server_function, rc = -29&amp;quot; in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/getting-and-error-message-quot-error-in-server-function-rc-29/m-p/4909489#M405879</link>
    <description>What program u r running ? it is a self made one ?</description>
    <pubDate>Tue, 28 Jun 2005 07:27:04 GMT</pubDate>
    <dc:creator>Bejoy C Alias</dc:creator>
    <dc:date>2005-06-28T07:27:04Z</dc:date>
    <item>
      <title>Getting and error message "Error in server_function, rc = -29"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/getting-and-error-message-quot-error-in-server-function-rc-29/m-p/4909488#M405878</link>
      <description>I am getting an error message &lt;BR /&gt;&lt;BR /&gt;"Error in server_function, rc = -29" &lt;BR /&gt;&lt;BR /&gt;while running a program in my system. It is rp8440 machine. OS is HPUX 11.1i. Can anyone help?</description>
      <pubDate>Tue, 28 Jun 2005 05:37:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/getting-and-error-message-quot-error-in-server-function-rc-29/m-p/4909488#M405878</guid>
      <dc:creator>Md. Shafiullah</dc:creator>
      <dc:date>2005-06-28T05:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: Getting and error message "Error in server_function, rc = -29"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/getting-and-error-message-quot-error-in-server-function-rc-29/m-p/4909489#M405879</link>
      <description>What program u r running ? it is a self made one ?</description>
      <pubDate>Tue, 28 Jun 2005 07:27:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/getting-and-error-message-quot-error-in-server-function-rc-29/m-p/4909489#M405879</guid>
      <dc:creator>Bejoy C Alias</dc:creator>
      <dc:date>2005-06-28T07:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Getting and error message "Error in server_function, rc = -29"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/getting-and-error-message-quot-error-in-server-function-rc-29/m-p/4909490#M405880</link>
      <description>It is a shared memory clean up process. After running a program sometimes the program does not release the shared memory. Then manually a shared memory cleanup script is run. When the cleanup process is run then the error is showing "Error in server_function, rc = -29".</description>
      <pubDate>Tue, 28 Jun 2005 23:28:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/getting-and-error-message-quot-error-in-server-function-rc-29/m-p/4909490#M405880</guid>
      <dc:creator>Md. Shafiullah</dc:creator>
      <dc:date>2005-06-28T23:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: Getting and error message "Error in server_function, rc = -29"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/getting-and-error-message-quot-error-in-server-function-rc-29/m-p/4909491#M405881</link>
      <description>Return codes in Unix are typically know as errno values and the description is found in man errno. Unfortunately, the man page does not use the numeric value, so you take the errno value (29) and search in /usr/include/sys/errno.h for 29 and you'll find the symbolic name, in this case: ESPIPE. Here are the details:&lt;BR /&gt; &lt;BR /&gt;from /usr/include/sys/errno.h:&lt;BR /&gt;   define       ESPIPE          29      /* Illegal seek                 */&lt;BR /&gt;&lt;BR /&gt;from man 2 errno:&lt;BR /&gt;      [ESPIPE]       Illegal seek.  An lseek() was issued to a pipe.&lt;BR /&gt; &lt;BR /&gt;lseek is a random access system call (even if you use it in a sequential manner) and data in a pipe cannot be positioned, thus the error.</description>
      <pubDate>Wed, 29 Jun 2005 09:53:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/getting-and-error-message-quot-error-in-server-function-rc-29/m-p/4909491#M405881</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2005-06-29T09:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: Getting and error message "Error in server_function, rc = -29"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/getting-and-error-message-quot-error-in-server-function-rc-29/m-p/4909492#M405882</link>
      <description>Thanks Bill!!&lt;BR /&gt;Actually I am a new system administrator and i want to know more about return codes and system calls. Then I'll be able to solve the problem. Could u name some books or send me some pdfs to help me?&lt;BR /&gt;&lt;BR /&gt;Shafi Ullah</description>
      <pubDate>Wed, 29 Jun 2005 22:41:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/getting-and-error-message-quot-error-in-server-function-rc-29/m-p/4909492#M405882</guid>
      <dc:creator>Md. Shafiullah</dc:creator>
      <dc:date>2005-06-29T22:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: Getting and error message "Error in server_function, rc = -29"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/getting-and-error-message-quot-error-in-server-function-rc-29/m-p/4909493#M405883</link>
      <description>Thank you all</description>
      <pubDate>Thu, 30 Jun 2005 05:13:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/getting-and-error-message-quot-error-in-server-function-rc-29/m-p/4909493#M405883</guid>
      <dc:creator>Md. Shafiullah</dc:creator>
      <dc:date>2005-06-30T05:13:56Z</dc:date>
    </item>
  </channel>
</rss>

