fork.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 19 Jun 2010 22:33:54 +0200
changeset 134 8325a0fc22cd
parent 77 49e0babccb23
child 138 dff18d1ac2af
permissions -rw-r--r--
simple corrections make both jni functions invisible to others use platform independent separators committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * fork.c
 * Copyright (C) 2008 Markus Broeker
 */

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/wait.h>
#include <errno.h>

int fork_proc (char **argv, char **argp)
{
    int pid;
    char *cmd = argv[0];

    pid = fork ();
    switch (pid) {
    case 0:
        printf ("Starting new Process\n");
        execve (cmd, argv, argp);
    case -1:
        perror ("FORK");
        return errno;
    default:
        printf ("Pid started as %d\n", pid);
        wait (&pid);
        printf ("Exit-Status = %d\n", pid);
        return pid;
    }
}

int main (int argc, char **argv)
{
    char *args[] = {
        "/bin/ls",
        "-al",
        NULL
    };

    if (fork_proc (args, NULL) == 0) {
        printf ("It just works :P\n");
    }

    return EXIT_SUCCESS;
}