Displaying 11 results from an estimated 11 matches for "getnewpage".
Did you mean:
get_new_page
2010 Jan 07
1
Segfault in GetNewPage, memory.c.
Hello.
I'm still working on my OCaml-R binding and I get a segfault in the
GetNewPage() function of memory.c.
For the record, the OCaml-R binding seems to work fine with OCaml
bytecode. The segfault here is the main issue I have with OCaml native
code. OCaml-R can be found on the following links.
Source code:
http://yziquel.homelinux.org/gitweb/?p=ocaml-r.git;a=summary
http:/...
2006 Mar 13
0
R_alloc problem (Mac OSX)
...for shared libraries .... done
(gdb) run
Starting program: /Users/kelley/src/R-from-fortran/test5
Reading symbols for shared libraries .........+ done
about to call R_alloc(1,4)
Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_PROTECTION_FAILURE at address: 0x0000000c
GetNewPage (node_class=1) at ../../../../R-2.2.1/src/main/memory.c:622
622 ../../../../R-2.2.1/src/main/memory.c: No such file or
directory.
in ../../../../R-2.2.1/src/main/memory.c
(gdb) where
#0 GetNewPage (node_class=1) at ../../../../R-2.2.1/src/main/
memory.c:622
#1 0x00293d38 in Rf_all...
2006 Mar 15
1
R_alloc problem on Mac OSX (PR#8683)
...for shared
libraries .... done
(gdb) run
Starting program: /Users/kelley/src/R-from-fortran/test5
Reading symbols for shared libraries .........+ done
about to call R_alloc(1,4)
Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_PROTECTION_FAILURE at address: 0x0000000c
GetNewPage (node_class=1) at ../../../../R-2.2.1/src/main/memory.c:622
622 ../../../../R-2.2.1/src/main/memory.c: No such file or directory.
in ../../../../R-2.2.1/src/main/memory.c
(gdb) where
#0 GetNewPage (node_class=1) at ../../../../R-2.2.1/src/main/memory.c:622
#1 0x00293d38 in Rf_allocVec...
2018 Mar 29
2
Possible `substr` bug in UTF-8 Corner Case
...==15375==??? by 0x507494: run_Rmainloop (main.c:1082)
==15375==??? by 0x41A8E6: main (Rmain.c:29)
==15375==? Address 0xb9e518d is 3,869 bytes inside a block of size 7,960 alloc'd
==15375==??? at 0x4C2DB8F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==15375==??? by 0x51033E: GetNewPage (memory.c:888)
==15375==??? by 0x511FC0: Rf_allocVector3 (memory.c:2691)
==15375==??? by 0x4657AC: Rf_allocVector (Rinlinedfuns.h:577)
==15375==??? by 0x4657AC: Rf_ScalarString (Rinlinedfuns.h:1007)
==15375==??? by 0x4657AC: coerceToVectorList (coerce.c:892)
==15375==??? by 0x4657AC: Rf_coerceVecto...
2017 Oct 06
1
SIGSEGV during startup
...=====
==3543==ERROR: AddressSanitizer: SEGV on unknown address
0x000000000000 (pc 0x00000043b2f2 bp 0x7ffeb5fdc670 sp 0x7ffeb5fdc660
T0)
#0 0x43b2f1 in ALTVEC_DATAPTR ../../../R-svn/src/main/altrep.c:305
#1 0x6b1068 in DATAPTR ../../../R-svn/src/include/Rinlinedfuns.h:105
#2 0x6b1068 in GetNewPage ../../../R-svn/src/main/memory.c:908
#3 0x6b5284 in Rf_allocVector3 ../../../R-svn/src/main/memory.c:2514
#4 0x654a49 in Rf_allocVector ../../../R-svn/src/include/Rinlinedfuns.h:514
#5 0x654a49 in Rf_mkTrue ../../../R-svn/src/main/gram.c:4164
#6 0x6b616c in Rf_InitMemory ../../../R-...
2018 Mar 29
0
Possible `substr` bug in UTF-8 Corner Case
...7494: run_Rmainloop (main.c:1082)
> ==15375==??? by 0x41A8E6: main (Rmain.c:29)
> ==15375==? Address 0xb9e518d is 3,869 bytes inside a block of size 7,960 alloc'd
> ==15375==??? at 0x4C2DB8F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
> ==15375==??? by 0x51033E: GetNewPage (memory.c:888)
> ==15375==??? by 0x511FC0: Rf_allocVector3 (memory.c:2691)
> ==15375==??? by 0x4657AC: Rf_allocVector (Rinlinedfuns.h:577)
> ==15375==??? by 0x4657AC: Rf_ScalarString (Rinlinedfuns.h:1007)
> ==15375==??? by 0x4657AC: coerceToVectorList (coerce.c:892)
> ==15375==??? by...
2002 Sep 12
2
Startup/Initialization Memory Leak in R
Is it already known that R does not free the memory that it allocates
during start-up (~10MB) when it exits? If so, are there currently any
plans to address this problem? I noticed that the 1.6.0 beta leaks
slightly more memory (~300k) than the 1.5.1 stable version.
I am working on a project that links with the R library, and there is a
question about unloading and later re-loading the
2011 Aug 14
0
Improved version of Rprofmem
...double dsize = (double)size * sizeof(VECREC)/1024.0;
@@ -3247,63 +3256,82 @@
int attribute_hidden (IS_CACHED)(SEXP x) { return IS_CACHED(x); }
/*******************************************/
-/* Non-sampling memory use profiler
- reports all large vector heap
- allocations and all calls to GetNewPage */
+/* Non-sampling memory use profiler reports vector allocations and/or
+ calls to GetNewPage */
/*******************************************/
-#ifndef R_MEMORY_PROFILING
-
-SEXP attribute_hidden do_Rprofmem(SEXP call, SEXP op, SEXP args, SEXP rho)
+static void R_OutputStackTrace (void)
{
-...
2012 Nov 20
1
Buffer overflow in date package
Dear list-members,
I have observed quite a strange problem with the date package.
You will find below what I get on my machine (Ubuntu). I have been able to
reproduce the error on Red Hat too. But it seems not to happen on Windows
(and on some other Linux distros?).
> require(date)
Loading required package: date
> sessionInfo()
R version 2.15.2 (2012-10-26)
Platform: x86_64-pc-linux-gnu
2013 Apr 02
1
Rpy2 and Mac OS X 10.8.3
...__TEXT 0000000100000000-0000000100001000 [ 4K]
r-x/rwx SM=COW
/opt/local/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libR.dylib 0x0000000104aeb1c7 GetNewPage + 183
(memory.c:806)
1 libR.dylib 0x0000000104aec44b Rf_allocVector + 2235
(memory.c:2221)
2 libR.dylib 0x0000000104a0816e
get_package_CEntry_table + 174 (Rinlinedfuns.h:513)
3 libR.dylib 0x0000000104a0825f R_RegisterCCallable +
31 (...
2013 Apr 02
1
Rpy2 and Mac OS X 10.8.3
...__TEXT 0000000100000000-0000000100001000 [ 4K]
r-x/rwx SM=COW
/opt/local/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libR.dylib 0x0000000104aeb1c7 GetNewPage + 183
(memory.c:806)
1 libR.dylib 0x0000000104aec44b Rf_allocVector + 2235
(memory.c:2221)
2 libR.dylib 0x0000000104a0816e
get_package_CEntry_table + 174 (Rinlinedfuns.h:513)
3 libR.dylib 0x0000000104a0825f R_RegisterCCallable +
31 (...