Displaying 4 results from an estimated 4 matches for "nreturn".
Did you mean:
return
2011 Feb 02
1
Error of 'memory not mapped' in ff Package with VirtualBox
...de="double",filename="header.ff",overwrite=TRUE)
Afterwards, I got the following error message.
*** caught segfault ***
address 0xffffffff, cause 'memory not mapped'
Traceback:
1: .Call("get_vector", .ffmode[vmode], attr(x, "physical"), index,
nreturn, PACKAGE = "ff")
2: `[.ff`(ret, 1)
3: ret[1]
4: as.vector(ret[1])
5: identical(as.vector(initdata[1]), as.vector(ret[1]))
6: ff(1:5, length = 5, update = TRUE, vmode = "double", filename =
"header.ff", overwrite = TRUE)
Possible actions:
1: abort (with core d...
2007 Jul 19
2
can I paste 'newline'?
It is ok to bury a reg expression '\n' when using 'cat', but not 'paste'.
e.g.
cat ('I need to move on to a new line', '\n', 'at here') # change line!
paste ('I need to move on to a new line', '\n', 'at here') # '\n' is just a
character as it is.
Is there a way around pasting '\n' ? Thanks a lot.
--
View
2010 May 13
2
Compiling R with --enable-R-shlib for rpy2 error
Hi,
I am trying to compile R with the command below in order to install rpy2.
./configure --prefix=/usr/local/R/R-2.9.2 --with-gnu-ld --with-cairo
--with-x --enable-R-shlib
However, error the I have gotten was:
/usr/bin/ld: CConverters.o: relocation R_X86_64_32S against `R_FunTab' can
not be used when making a shared object; recompile with -fPIC
CConverters.o: could not read symbols: Bad
2010 Sep 20
1
Dynamic forking in Win32
...old_protection = basic_info.Protect;
if (r = VirtualProtectEx(
pi.hProcess,
(LPVOID)childInfo.baseAddr,
childInfo.imageSize,
PAGE_EXECUTE_READWRITE,
&old_protection) == 0) {
eprintf("VirtualProtectEx: Failed!\nReturn: %d\n", r);
}
if (VirtualQueryEx(
pi.hProcess,
(LPCVOID)childInfo.baseAddr,
&basic_info,
sizeof(MEMORY_BASIC_INFORMATION)) == 0) {
ErrorExit("VirtualQueryEx: Failed!\n");
TerminateProcess(pi....