<?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: query on time and timex command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161706#M456413</link>
    <description>Thanks for the quick replies .. Can you give some more description on user and sys time. [ Not in detail .. in simple defination ]</description>
    <pubDate>Fri, 06 Mar 2009 05:33:04 GMT</pubDate>
    <dc:creator>Amit Jindal_1</dc:creator>
    <dc:date>2009-03-06T05:33:04Z</dc:date>
    <item>
      <title>query on time and timex command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161703#M456410</link>
      <description>Hi, &lt;BR /&gt;    I have a query on time or timex command.&lt;BR /&gt;Take the below example. My query is that what are the real / user and sys signifies. I saw the man page to become more confused.. Please help. [ I assume that the real time is the one which is the time taken for the command execution ] &lt;BR /&gt;&lt;BR /&gt;root@host1:&amp;gt;time find /app &amp;gt;/dev/null&lt;BR /&gt;real        2.7&lt;BR /&gt;user        0.3&lt;BR /&gt;sys         2.2 &lt;BR /&gt;&lt;BR /&gt;I have seen the man page small caption below:&lt;BR /&gt; DESCRIPTION : command is executed.  Upon completion, time prints the elapsed time&lt;BR /&gt;during the command, the time spent in the system, and the time spent executing the command. Times are reported in seconds.</description>
      <pubDate>Fri, 06 Mar 2009 05:21:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161703#M456410</guid>
      <dc:creator>Amit Jindal_1</dc:creator>
      <dc:date>2009-03-06T05:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: query on time and timex command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161704#M456411</link>
      <description>&amp;gt;the real time is the one which is the time taken for the command execution&lt;BR /&gt;&lt;BR /&gt;Yes, the time you would measure if you used a stopwatch.  This includes all of the wait times which aren't included in user or sys.</description>
      <pubDate>Fri, 06 Mar 2009 05:24:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161704#M456411</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-03-06T05:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: query on time and timex command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161705#M456412</link>
      <description>timex reports in seconds the elapsed time, user time, and system time spent in execution of the given command.&lt;BR /&gt;&lt;BR /&gt;And Upon completion, time prints the elapsed time&lt;BR /&gt;during the command, the time spent in the system, and the time spent executing the command.</description>
      <pubDate>Fri, 06 Mar 2009 05:25:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161705#M456412</guid>
      <dc:creator>Jeeshan</dc:creator>
      <dc:date>2009-03-06T05:25:30Z</dc:date>
    </item>
    <item>
      <title>Re: query on time and timex command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161706#M456413</link>
      <description>Thanks for the quick replies .. Can you give some more description on user and sys time. [ Not in detail .. in simple defination ]</description>
      <pubDate>Fri, 06 Mar 2009 05:33:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161706#M456413</guid>
      <dc:creator>Amit Jindal_1</dc:creator>
      <dc:date>2009-03-06T05:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: query on time and timex command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161707#M456414</link>
      <description>The user time is the time the cpu spent performing user related tasks (your script)&lt;BR /&gt;&lt;BR /&gt;the system time is the time the cpu spent doing system related tasks (the kernel...)</description>
      <pubDate>Fri, 06 Mar 2009 05:56:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161707#M456414</guid>
      <dc:creator>Jeeshan</dc:creator>
      <dc:date>2009-03-06T05:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: query on time and timex command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161708#M456415</link>
      <description>still unable to understand .. sorry for that &lt;BR /&gt;&lt;BR /&gt;In the contect of my example, what I assume and understand is : My command / script has got some system calls which have to be taken care by the kernel, in this case listing the files/dir from disk in /app area. So kernel took some time , that is sys time ?? is that correct .. I may be wrong .. then what is user time ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;root@host1:&amp;gt;time find /app &amp;gt;/dev/null&lt;BR /&gt;real 2.7&lt;BR /&gt;user 0.3&lt;BR /&gt;sys 2.2 &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Mar 2009 06:50:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161708#M456415</guid>
      <dc:creator>Amit Jindal_1</dc:creator>
      <dc:date>2009-03-06T06:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: query on time and timex command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161709#M456416</link>
      <description>&amp;gt;got some system calls which have to be taken care by the kernel, in this case listing the files/dir from disk. So kernel took some time, that is sys time??&lt;BR /&gt;&lt;BR /&gt;Yes.  System time is the time the kernel uses to manage the system.  It could be swapping you in and out, setting up I/O, moving the data to your buffers, etc.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;then what is user time?&lt;BR /&gt;&lt;BR /&gt;This is the time spent outside the kernel, in your executable or shlib.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Mar 2009 07:08:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161709#M456416</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-03-06T07:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: query on time and timex command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161710#M456417</link>
      <description>Thanks Dennis for teh explanation.</description>
      <pubDate>Fri, 06 Mar 2009 10:41:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-time-and-timex-command/m-p/5161710#M456417</guid>
      <dc:creator>Amit Jindal_1</dc:creator>
      <dc:date>2009-03-06T10:41:14Z</dc:date>
    </item>
  </channel>
</rss>

