Print this page
8609 want a position independent CRT

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libc/i386/gen/makectxt.c
          +++ new/usr/src/lib/libc/i386/gen/makectxt.c
↓ open down ↓ 56 lines elided ↑ open up ↑
  57   57   * alignment (%esp & 0xf == 0) is true just *before* the call instruction.
  58   58   * The call instruction will then push a return value, decrementing %esp by
  59   59   * 4.  Therefore, if one dumps %esp at the at the very first instruction in
  60   60   * a function, it will end with a 0xc.  The compiler expects this and
  61   61   * compensates for it properly.
  62   62   *
  63   63   * Note: If you change this value, you need to change it in the following
  64   64   * files as well:
  65   65   *
  66   66   *  - lib/libc/i386/threads/machdep.c
  67      - *  - lib/common/i386/crti.s
  68      - *  - lib/common/i386/crt1.s
       67 + *  - lib/crt/i86/crti.s
       68 + *  - lib/crt/i86/crt1.s
  69   69   */
  70   70  #undef  STACK_ALIGN
  71   71  #define STACK_ALIGN     16
  72   72  
  73   73  static void resumecontext(void);
  74   74  
  75   75  void
  76   76  makecontext(ucontext_t *ucp, void (*func)(), int argc, ...)
  77   77  {
  78   78          long *sp;
↓ open down ↓ 40 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX