On Tue, 3 Jan 2006, Marcelo Damasceno wrote:

> Sorry about my incautiousness, I use the tips, but is
> happen same problems.

Not really. You definitely skipped over the most important
one - don't terminate the host process.

>     if(temp4 == NULL){
>         printf("\n\n No Memory4!");
>         exit(1);
>     }

    if (temp4 == NULL) {
        error("memory allocation failed for 'temp4'");
        /*NOTREACHED*/
    }

----------------------------------------------------------
SIGSIG -- signature too long (core dumped)

______________________________________________
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel

Reply via email to