search for: r_warn

Displaying 8 results from an estimated 8 matches for "r_warn".

Did you mean: pr_warn
2003 Oct 08
1
Memmory Bugs (PR#4474)
This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --43518230-584990211-1065637857=:31587 Content-Type: TEXT/PLAIN; charset=US-ASCII I found (or rather the compiler I was using found) a few bugs in the R-1.7.1 sources. I'm not
2011 Nov 11
1
When collected warnings exceeds 50
...(revision 57624) +++ src/main/errors.c (working copy) @@ -333,8 +333,11 @@ char *tr; int nc; if(!R_CollectWarnings) setupwarnings(); - if( R_CollectWarnings > 49 ) + if( R_CollectWarnings > 49 ) { + endcontext(&cntxt); + inWarning = 0; return; + } SET_VECTOR_ELT(R_Warnings, R_CollectWarnings, call); Rvsnprintf(buf, min(BUFSIZE, R_WarnLength+1), format, ap); if(R_WarnLength < BUFSIZE - 20 && strlen(buf) == R_WarnLength) This fix eliminates the "Invalid read" errors, but I'm unsure if it fixes my application. I'll find out tomorrow...
2019 Jul 13
2
Mitigating Stalls Caused by Call Deparse on Error
...etVarLocValue ? R_HandlerStack Index: src/include/Defn.h =================================================================== --- src/include/Defn.h?? ?(revision 76827) +++ src/include/Defn.h?? ?(working copy) @@ -1296,6 +1296,7 @@ ?void NORET ErrorMessage(SEXP, int, ...); ?void WarningMessage(SEXP, R_WARNING, ...); ?SEXP R_GetTraceback(int); +SEXP R_GetTracebackParsed(int); ? ?R_size_t R_GetMaxVSize(void); ?void R_SetMaxVSize(R_size_t); Index: src/library/base/R/traceback.R =================================================================== --- src/library/base/R/traceback.R?? ?(revision 76827) +++...
2019 Jul 14
2
[External] Mitigating Stalls Caused by Call Deparse on Error
...Index: src/include/Defn.h > =================================================================== > --- src/include/Defn.h?? ?(revision 76827) > +++ src/include/Defn.h?? ?(working copy) > @@ -1296,6 +1296,7 @@ > ?void NORET ErrorMessage(SEXP, int, ...); > ?void WarningMessage(SEXP, R_WARNING, ...); > ?SEXP R_GetTraceback(int); > +SEXP R_GetTracebackParsed(int); > ? > ?R_size_t R_GetMaxVSize(void); > ?void R_SetMaxVSize(R_size_t); > Index: src/library/base/R/traceback.R > =================================================================== > --- src/library/bas...
2019 Jul 16
1
[External] Mitigating Stalls Caused by Call Deparse on Error
...=========================================================== >>> --- src/include/Defn.h (revision 76827) >>> +++ src/include/Defn.h (working copy) >>> @@ -1296,6 +1296,7 @@ >>> void NORET ErrorMessage(SEXP, int, ...); >>> void WarningMessage(SEXP, R_WARNING, ...); >>> SEXP R_GetTraceback(int); >>> +SEXP R_GetTracebackParsed(int); >>> >>> R_size_t R_GetMaxVSize(void); >>> void R_SetMaxVSize(R_size_t); >>> Index: src/library/base/R/traceback.R >>> ====================================...
2019 Jul 14
0
[External] Mitigating Stalls Caused by Call Deparse on Error
...Index: src/include/Defn.h > =================================================================== > --- src/include/Defn.h?? ?(revision 76827) > +++ src/include/Defn.h?? ?(working copy) > @@ -1296,6 +1296,7 @@ > ?void NORET ErrorMessage(SEXP, int, ...); > ?void WarningMessage(SEXP, R_WARNING, ...); > ?SEXP R_GetTraceback(int); > +SEXP R_GetTracebackParsed(int); > ? > ?R_size_t R_GetMaxVSize(void); > ?void R_SetMaxVSize(R_size_t); > Index: src/library/base/R/traceback.R > =================================================================== > --- src/library/bas...
2019 Jul 15
0
[External] Mitigating Stalls Caused by Call Deparse on Error
....h >> =================================================================== >> --- src/include/Defn.h?? ?(revision 76827) >> +++ src/include/Defn.h?? ?(working copy) >> @@ -1296,6 +1296,7 @@ >> ?void NORET ErrorMessage(SEXP, int, ...); >> ?void WarningMessage(SEXP, R_WARNING, ...); >> ?SEXP R_GetTraceback(int); >> +SEXP R_GetTracebackParsed(int); >> ? >> ?R_size_t R_GetMaxVSize(void); >> ?void R_SetMaxVSize(R_size_t); >> Index: src/library/base/R/traceback.R >> ================================================================...
2001 Feb 17
4
Comments on R-1.2.1 builds (PR#851)
...^ cc-1552 c89: WARNING File = errors.c, Line = 161 The variable "slen" is set but never used. int w, slen; ^ cc-1185 c89: WARNING File = errors.c, Line = 238 An enumerated type is mixed with another type. CHAR(STRING_ELT(deparse1(VECTOR_ELT(R_Warnings, 0),0), 0))); ^ cc-1185 c89: WARNING File = errors.c, Line = 248 An enumerated type is mixed with another type. CHAR(STRING_ELT(deparse1(VECTOR_ELT(R_Warnings,i), 0), 0))); ^ cc-1185 c89: WARNING File = errors.c, Line = 291 An enumera...