[BACK]Return to kern_exec.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / kern

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/kern/kern_exec.c between version 1.242 and 1.243

version 1.242, 2007/03/09 14:11:24 version 1.243, 2007/03/09 22:25:56
Line 586  execve1(struct lwp *l, const char *path,
Line 586  execve1(struct lwp *l, const char *path,
                     szsigcode + sizeof(struct ps_strings) + STACK_PTHREADSPACE)                      szsigcode + sizeof(struct ps_strings) + STACK_PTHREADSPACE)
                     - argp;                      - argp;
   
   #ifdef STACKLALIGN      /* arm, etc. */
           len = STACKALIGN(len);  /* make the stack "safely" aligned */
   #else
         len = ALIGN(len);       /* make the stack "safely" aligned */          len = ALIGN(len);       /* make the stack "safely" aligned */
   #endif
   
         if (len > pack.ep_ssize) { /* in effect, compare to initial limit */          if (len > pack.ep_ssize) { /* in effect, compare to initial limit */
                 error = ENOMEM;                  error = ENOMEM;

Legend:
Removed from v.1.242  
changed lines
  Added in v.1.243

CVSweb <webmaster@jp.NetBSD.org>