Skip to content
Back to formatted view

Raw Message

Message-ID: <CA+hbrhX8Vp9bEBFpmyc4V+WvbtbaOoq1-BSumsJsP_MUHk7kdQ@mail.gmail.com>
Date: 2012-11-09T23:33:31Z
From: Peter Langfelder
Subject: Crash - cause 'memory not mapped'
In-Reply-To: <C82D3210-6C35-4F60-9B18-415838FEB365@yahoo.it>

On Fri, Nov 9, 2012 at 3:05 PM, gianluca mastrantonio
<gianluca.mastrantonio at yahoo.it> wrote:
> the error "memory non mapped" happen also if i use
> void FiltroGaus(SEXP size1_r, SEXP size2_r, SEXP sigma_r)
> instead
> SEXP FiltroGaus(SEXP size1_r, SEXP size2_r, SEXP sigma_r) {
>

If you use a .Call on a function, the function must return a SEXP, it
cannot be have a void return value.

Peter