/* exec.c
 *
 * COPYRIGHT (c) 1995 by AT&T Bell Laboratories.
 */

#include "ml-base.h"
#include "ml-values.h"
#include "ml-objects.h"
#include "ml-c.h"
#include "cfun-proto-list.h"
#include <unistd.h>

/* _ml_P_Process_exec : string * string list -> 'a
 *
 * Overlay a new process image
 */
ml_val_t _ml_P_Process_exec (ml_state_t *msp, ml_val_t arg)
{
    int             sts;
    ml_val_t	    path = REC_SEL(arg, 0);
    ml_val_t        arglst = REC_SEL(arg, 1);
    char            **argv;
    ml_val_t        p;
    char            **cp;

      /* use the heap for temp space for the argv[] vector */
    cp = (char **)(msp->ml_allocPtr);
#ifdef SIZES_C64_ML32
      /* must 8-byte align this */
    cp = (char **)ROUNDUP((Unsigned64_t)cp, ADDR_SZB);
#endif
    argv = cp;
    for (p = arglst;  p != LIST_nil;  p = LIST_tl(p))
        *cp++ = STR_MLtoC(LIST_hd(p));
    *cp++ = 0;  /* terminate the argv[] */

    sts = execv(STR_MLtoC(path), argv);
    CHK_RETURN (msp, sts)

} /* end of _ml_P_Process_exec */


syntax highlighted by Code2HTML, v. 0.9.1