<?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: Where do I find &amp;quot;u&amp;quot; (was in user.h) on 11.31? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990300#M755872</link>
    <description>in fact you can find all those interface function at&lt;BR /&gt;&lt;A href="http://h21007.www2.hp.com/dspp/tech/tech_TechDocumentDetailPage_IDX/1,1701,10109,00.html" target="_blank"&gt;http://h21007.www2.hp.com/dspp/tech/tech_TechDocumentDetailPage_IDX/1,1701,10109,00.html&lt;/A&gt;&lt;BR /&gt;in the DDR.</description>
    <pubDate>Sat, 28 Apr 2007 05:56:54 GMT</pubDate>
    <dc:creator>Laurent Menase</dc:creator>
    <dc:date>2007-04-28T05:56:54Z</dc:date>
    <item>
      <title>Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990291#M755863</link>
      <description>Hi,&lt;BR /&gt;Am trying to port a kernel driver to HP-UX 11.31.  On 11.23 (and earlier) I used&lt;BR /&gt;/usr/include/machine/sys/user.h ... which&lt;BR /&gt;doesn't seem to be on 11.31.&lt;BR /&gt;(That file contained "_u_default"&lt;BR /&gt;and "#define u _u_default")&lt;BR /&gt;&lt;BR /&gt;I've installed various development pkgs,&lt;BR /&gt;and now have about 35 files in /usr/include/machine/sys ... but no user.h&lt;BR /&gt;&lt;BR /&gt;Also, kernel lacks "_u_default" (and the older "uptr") variables.  From Linux R&amp;amp;D, I suspect that r13 is a pointer to a user_t&lt;BR /&gt;variable, but that doesn't help me much&lt;BR /&gt;from C :)&lt;BR /&gt;&lt;BR /&gt;Any pointers appreciated, thanks.&lt;BR /&gt;&lt;BR /&gt;BTW, the 11i v3 Driver Development Reference&lt;BR /&gt;manual from HP refers to "u" in several places,&lt;BR /&gt;meaning either "u" should be available or that the manual has several bugs in it.&lt;BR /&gt;(HP Part Number: 5991-7749 Edition: E0207)</description>
      <pubDate>Fri, 27 Apr 2007 16:18:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990291#M755863</guid>
      <dc:creator>Stan Sieler</dc:creator>
      <dc:date>2007-04-27T16:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990292#M755864</link>
      <description>u is _u_default which is  *uptr on pa system &lt;BR /&gt;- always the same adress in different segments.&lt;BR /&gt;but on IA system&lt;BR /&gt;u is _u_default which is a __thread user_t&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 27 Apr 2007 18:36:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990292#M755864</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2007-04-27T18:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990293#M755865</link>
      <description>apparantly it is missing when it should be included,&lt;BR /&gt;so contact hp support.&lt;BR /&gt;&lt;BR /&gt;else you can use hpux 11.23 user.h since it had not been changed. - or very few only for lint-&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 27 Apr 2007 19:06:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990293#M755865</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2007-04-27T19:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990294#M755866</link>
      <description>Laurent said:&lt;BR /&gt;&lt;BR /&gt;#1: [...]  Yes, that's what I'd said.&lt;BR /&gt;Note, however, that 11.23 *HAS* "u".&lt;BR /&gt;I don't know if it's "correct" or not,&lt;BR /&gt;but it is (via a define):&lt;BR /&gt;  extern  __thread user_t _u_default;&lt;BR /&gt;i.e., presumably "thread correct".&lt;BR /&gt;&lt;BR /&gt;#2: [...] nope ... I checked that before&lt;BR /&gt;posting :)&lt;BR /&gt;&lt;BR /&gt;11.23's "user_t" is 3728 bytes long,&lt;BR /&gt;with u_ap at offset 2752.&lt;BR /&gt;&lt;BR /&gt;11.31's "user_t" is 3984 bytes long,&lt;BR /&gt;with u_ap at offset 3224.&lt;BR /&gt;&lt;BR /&gt;So...still looking for solutions :)&lt;BR /&gt;&lt;BR /&gt;I may just try creating my own user_t typedef,&lt;BR /&gt;and using the declaration:&lt;BR /&gt;  extern  __thread user_t _u_default;&lt;BR /&gt;to get access to u.&lt;BR /&gt;&lt;BR /&gt;Ah...maybe "tbss" means "thread bss"?&lt;BR /&gt;...it's not documented in "man nm" :(&lt;BR /&gt;&lt;BR /&gt;thanks,&lt;BR /&gt;Stan&lt;BR /&gt;sieler@allegro.com</description>
      <pubDate>Sat, 28 Apr 2007 00:17:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990294#M755866</guid>
      <dc:creator>Stan Sieler</dc:creator>
      <dc:date>2007-04-28T00:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990295#M755867</link>
      <description>&amp;gt;I suspect that r13&lt;BR /&gt;&lt;BR /&gt;Yes, r13 is TP.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;maybe "tbss" means "thread bss"?&lt;BR /&gt;&lt;BR /&gt;Naturally.</description>
      <pubDate>Sat, 28 Apr 2007 00:29:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990295#M755867</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-04-28T00:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990296#M755868</link>
      <description>Hi Stan,&lt;BR /&gt;struct user is not defined in user.h&lt;BR /&gt;for pa:&lt;BR /&gt;$ diff I80_11.23_LR  I80_11.31_LR ;echo $?&lt;BR /&gt;0&lt;BR /&gt;for ia:&lt;BR /&gt;$ diff I80_11.23_LR  I80_11.31_LR ;echo $?&lt;BR /&gt;50d49&lt;BR /&gt;&amp;lt; #ifdef  _lint&lt;BR /&gt;52,56d50&lt;BR /&gt;&amp;lt;  * FlexeLint does not recognize "__thread" keyword.&lt;BR /&gt;&amp;lt;  */&lt;BR /&gt;&amp;lt; extern  user_t  _u_default;&lt;BR /&gt;&amp;lt; #else   /* !_lint */&lt;BR /&gt;&amp;lt; /*&lt;BR /&gt;60d53&lt;BR /&gt;&amp;lt; #endif  /* _lint */&lt;BR /&gt;1&lt;BR /&gt;&lt;BR /&gt;Then&lt;BR /&gt;on PA system uptr has the same value for any thread/process. It is differianciated by the segment definition only!&lt;BR /&gt;&lt;BR /&gt;on IA64 system uptr does not exist because the adress is not the same for every thread.&lt;BR /&gt;But we have the new __thread which define _u_default as a thread specific data.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 28 Apr 2007 01:44:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990296#M755868</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2007-04-28T01:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990297#M755869</link>
      <description>You where talking about "u" only.&lt;BR /&gt;there are 2 different user.h.&lt;BR /&gt;one is defined in machine/sys/user.h&lt;BR /&gt;and is arch dependant and defines "u"&lt;BR /&gt;the second is common to ia64 and pa and is&lt;BR /&gt;in sys/user.h and define struct user&lt;BR /&gt;You should contact hp response center or dspp (&lt;A href="http://h21007.www2.hp.com/)" target="_blank"&gt;http://h21007.www2.hp.com/)&lt;/A&gt; group to get those file.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 28 Apr 2007 02:02:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990297#M755869</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2007-04-28T02:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990298#M755870</link>
      <description>of course the user.h for which I put the diff is machine/sys/user.h, the one which defines "u" like asked in the question.</description>
      <pubDate>Sat, 28 Apr 2007 02:12:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990298#M755870</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2007-04-28T02:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990299#M755871</link>
      <description>&lt;A href="http://h21007.www2.hp.com/dspp/fback/fback_SendFeedback_IDX/1,1291,10,00.html" target="_blank"&gt;http://h21007.www2.hp.com/dspp/fback/fback_SendFeedback_IDX/1,1291,10,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;but apparantly it is something wanted to not deliver it anymore for modularity purpose. So it may be changed anytime without any notice to third party.&lt;BR /&gt;but interface functions had been defined.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;What do you need to access in user structure exactly? there is may be some solutions.&lt;BR /&gt;for instance to get the current thread pointer you have kthreadp_self(void) defined in sys/kthread.h&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 28 Apr 2007 02:48:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990299#M755871</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2007-04-28T02:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990300#M755872</link>
      <description>in fact you can find all those interface function at&lt;BR /&gt;&lt;A href="http://h21007.www2.hp.com/dspp/tech/tech_TechDocumentDetailPage_IDX/1,1701,10109,00.html" target="_blank"&gt;http://h21007.www2.hp.com/dspp/tech/tech_TechDocumentDetailPage_IDX/1,1701,10109,00.html&lt;/A&gt;&lt;BR /&gt;in the DDR.</description>
      <pubDate>Sat, 28 Apr 2007 05:56:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990300#M755872</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2007-04-28T05:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990301#M755873</link>
      <description>Re:&lt;BR /&gt;&lt;BR /&gt;Laurent writes:&lt;BR /&gt;in fact you can find all those interface function at &lt;BR /&gt;&lt;A href="http://h21007.www2.hp.com/dspp/tech/tech_TechDocumentDetailP" target="_blank"&gt;http://h21007.www2.hp.com/dspp/tech/tech_TechDocumentDetailP&lt;/A&gt;&lt;BR /&gt;age_IDX/1,1701,10109,00.html &lt;BR /&gt;in the DDR. &lt;BR /&gt;&lt;BR /&gt;I mentioned at the start that I had looked&lt;BR /&gt;at the DDR (giving the part number of the&lt;BR /&gt;manual :)  I didn't specify that I looked&lt;BR /&gt;at every page, however.  The guide lacks&lt;BR /&gt;*many* of the interface routines of the&lt;BR /&gt;kernel ... it primarily lists those thought&lt;BR /&gt;to be of interest to the device writer,&lt;BR /&gt;not all routines in the kernel.  Further&lt;BR /&gt;searching shows not a single interface&lt;BR /&gt;to "u" for anything concerning system&lt;BR /&gt;calls (e.g., u_ap, u_nargs, u_error).&lt;BR /&gt;&lt;BR /&gt;Indeed, the DDR (as I mentioned at the start)&lt;BR /&gt;implies that "u" is available (e.g., u.u_error).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Re: Laurent writes:&lt;BR /&gt;&amp;gt; But we have the new __thread which define&lt;BR /&gt;&amp;gt; _u_default as a thread specific data. &lt;BR /&gt;&lt;BR /&gt;I forgot to mention that the 11.23 &lt;BR /&gt;/usr/include/ia64/sys/user.h includes:&lt;BR /&gt;   extern  __thread user_t _u_default;&lt;BR /&gt;...I mostly omitted mentioning it because&lt;BR /&gt;there is no same-named user.h file on any 11.34&lt;BR /&gt;system I've seen so far.&lt;BR /&gt;&lt;BR /&gt;I could, as I suggested earlier, define&lt;BR /&gt;my own user.h (with hopefully correct layout)&lt;BR /&gt;and declare my own:&lt;BR /&gt;   extern  __thread user_t _u_default;&lt;BR /&gt;&lt;BR /&gt;...in fact, I'll try that now...&lt;BR /&gt;&lt;BR /&gt;bingo...seems to work...somewhat.&lt;BR /&gt;&lt;BR /&gt;However, although I'm seeing u.u_ap correctly,&lt;BR /&gt;u.u_nargs seems to be 0.&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Apr 2007 17:33:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990301#M755873</guid>
      <dc:creator>Stan Sieler</dc:creator>
      <dc:date>2007-04-30T17:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990302#M755874</link>
      <description>Seems like u.u_nargs is set from sy_nargs&lt;BR /&gt;instead of from the actual number of parameters passed in.&lt;BR /&gt;&lt;BR /&gt;(That may be a bug, insofar as the&lt;BR /&gt;programmer would expect the user-callable&lt;BR /&gt;"syscall()" routine (which accepts a &lt;BR /&gt;variable number of arguments) to pass in&lt;BR /&gt;nargs).&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Apr 2007 18:22:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990302#M755874</guid>
      <dc:creator>Stan Sieler</dc:creator>
      <dc:date>2007-04-30T18:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990303#M755875</link>
      <description>Hi Stan,&lt;BR /&gt;&lt;BR /&gt;It is something which was intentionally done to remove "u" from public interface.&lt;BR /&gt;&lt;BR /&gt;But you are right some of the interface functions are missing.&lt;BR /&gt;&lt;BR /&gt;u.u_error interface is clearly missing and&lt;BR /&gt;is indeed present 3 times in the DDR.&lt;BR /&gt;and one time where it is needed to be used:&lt;BR /&gt;the driver_select(9E)&lt;BR /&gt;For the other, u_nargs had always been for debug purpose, and has always been sy_narg.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;u_ap is to be used if you are writing a syscall and not a driver.&lt;BR /&gt;&lt;BR /&gt;If it is the case, and you need the u_ap and different fields of struct user, then contact the DSPP or hp support and ask for an enhancement there. - DSPP should be more appropriated in that case-.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 02 May 2007 10:26:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990303#M755875</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2007-05-02T10:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990304#M755876</link>
      <description>My driver installs syscall intercepts :)&lt;BR /&gt;&lt;BR /&gt;I call it a "driver" only because I&lt;BR /&gt;communicate with it via ioctl() ... it's&lt;BR /&gt;real purpose is to intercept/modify&lt;BR /&gt;certain system calls for users.&lt;BR /&gt;&lt;BR /&gt;And, it would seem to have to be a driver&lt;BR /&gt;because there doesn't appear to be any&lt;BR /&gt;other mechanism of adding code to the&lt;BR /&gt;kernel (and getting it invoked at some time).&lt;BR /&gt;(I'd design/donate one, but not without&lt;BR /&gt;an assurance that it would be accepted/used :)&lt;BR /&gt;&lt;BR /&gt;Stan&lt;BR /&gt;sieler@allegro.com</description>
      <pubDate>Wed, 02 May 2007 13:18:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990304#M755876</guid>
      <dc:creator>Stan Sieler</dc:creator>
      <dc:date>2007-05-02T13:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990305#M755877</link>
      <description>Hi Stan,&lt;BR /&gt;&lt;BR /&gt;A pair of interface functions are defined in&lt;BR /&gt;sys/syscall_kernprivate.h:&lt;BR /&gt;I think I have found the functions you need:&lt;BR /&gt;scall_argp(void)  returns u.u_ap;&lt;BR /&gt;set_scall_argp(scall_arg_t *argp) set u.u_ap&lt;BR /&gt;scall_rvalp(void)    Return a pointer to the system call return value(s)&lt;BR /&gt;scall_num(void) return the syscall number&lt;BR /&gt;set_scall_num(scall_num_t num)&lt;BR /&gt;scall_error(void)  get the u.u_error&lt;BR /&gt;set_scall_error(int error) set u.u_error&lt;BR /&gt;scall_qsave(void)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 02 May 2007 14:26:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990305#M755877</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2007-05-02T14:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990306#M755878</link>
      <description>Hi Laurent,&lt;BR /&gt;&lt;BR /&gt;thanks for the pointer to  sys/syscall_kernprivate.h ...&lt;BR /&gt;it has a number of useful routines for&lt;BR /&gt;defining my own system call.&lt;BR /&gt;&lt;BR /&gt;I'd looked at it in 11.23, but had&lt;BR /&gt;overlooked it for 11.34.&lt;BR /&gt;&lt;BR /&gt;On 11.23 (and earlier), it doesn't have anything of the form "scall_...",&lt;BR /&gt;but that stuff is there on 11.34, thanks!&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 02 May 2007 14:43:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990306#M755878</guid>
      <dc:creator>Stan Sieler</dc:creator>
      <dc:date>2007-05-02T14:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I find "u" (was in user.h) on 11.31?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990307#M755879</link>
      <description>Hi  Stan,&lt;BR /&gt;Indeed this is new for 11.31. On 11.23 you still need to use struct user and "u" defined in sys/user.h which includes machine/sys/user.h</description>
      <pubDate>Wed, 02 May 2007 15:02:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-do-i-find-quot-u-quot-was-in-user-h-on-11-31/m-p/3990307#M755879</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2007-05-02T15:02:12Z</dc:date>
    </item>
  </channel>
</rss>

