Print this page
15254 %ymm registers not restored after signal handler
15367 x86 getfpregs() summons corrupting %xmm ghosts
15333 want x86 /proc xregs support (libc_db, libproc, mdb, etc.)
15336 want libc functions for extended ucontext_t
15334 want ps_lwphandle-specific reg routines
15328 FPU_CW_INIT mistreats reserved bit
15335 i86pc fpu_subr.c isn't really platform-specific
15332 setcontext(2) isn't actually noreturn
15331 need <sys/stdalign.h>
Change-Id: I7060aa86042dfb989f77fc3323c065ea2eafa9ad
Conflicts:
    usr/src/uts/common/fs/proc/prcontrol.c
    usr/src/uts/intel/os/archdep.c
    usr/src/uts/intel/sys/ucontext.h
    usr/src/uts/intel/syscall/getcontext.c

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libc/inc/libc.h
          +++ new/usr/src/lib/libc/inc/libc.h
↓ open down ↓ 222 lines elided ↑ open up ↑
 223  223  
 224  224  /*
 225  225   * defined in getctxt.c
 226  226   */
 227  227  extern int _getcontext(ucontext_t *) __RETURNS_TWICE;
 228  228  
 229  229  /*
 230  230   * defined in ucontext.s
 231  231   */
 232  232  extern int __getcontext(ucontext_t *);
      233 +extern int __getcontext_extd(ucontext_t *);
 233  234  
 234  235  /*
 235  236   * defined in door.s
 236  237   */
 237  238  extern int __door_info(int, door_info_t *);
 238  239  extern int __door_call(int, door_arg_t *);
 239  240  
 240  241  /*
 241  242   * defined in _portfs.s
 242  243   */
↓ open down ↓ 96 lines elided ↑ open up ↑
 339  340  extern void common_panic(const char *, const char *);
 340  341  
 341  342  /*
 342  343   * defined in mbrtowc.c.
 343  344   */
 344  345  extern size_t mbrtowc_nz_l(wchar_t *_RESTRICT_KYWD, const char *_RESTRICT_KYWD,
 345  346      size_t, mbstate_t *_RESTRICT_KYWD, locale_t);
 346  347  extern size_t mbrtowc_nz(wchar_t *_RESTRICT_KYWD, const char *_RESTRICT_KYWD,
 347  348      size_t, mbstate_t *_RESTRICT_KYWD);
 348  349  
      350 +/*
      351 + * defined in getauxv.c.
      352 + */
      353 +extern long ___getauxval(int);
      354 +extern void *___getauxptr(int);
      355 +
 349  356  #ifdef  __cplusplus
 350  357  }
 351  358  #endif
 352  359  
 353  360  #endif /* _LIBC_H */
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX