search for: keepfile

Displaying 4 results from an estimated 4 matches for "keepfile".

Did you mean: keepfiles
2003 Apr 16
0
vignette segfault bt
...ors()' for more information. Type `demo()' for some demos, `help()' for on-line help, or `help.start()' for a HTML browser interface to help. Type `q()' to quit R. > library(tools) > checkVignettes(dir='/home/paul/dse/src/pac/monitor', workdir = 'cur', keepfiles=TRUE) Program received signal SIGILL, Illegal instruction. 0x080786ff in file_fgetc (con=0xbfffc830) at connections.c:289 289 this->wpos = ftell(this->fp); (gdb) bt #0 0x080786ff in file_fgetc (con=0xbfffc830) at connections.c:289 #1 0x080a9ce1 in con_getc () at /ext/R/cvs/R-...
2003 Apr 05
0
sweave/gc segfault bt
...tributors()' for more information. Type `demo()' for some demos, `help()' for on-line help, or `help.start()' for a HTML browser interface to help. Type `q()' to quit R. > library(tools) > checkVignettes(dir='/home/paul/dse/src/pac/dse2', workdir = 'cur', keepfiles=TRUE) Program received signal SIGSEGV, Segmentation fault. 0x080784ff in file_fgetc (con=0xbfffc8a0) at connections.c:291 291 fseek(this->fp, this->rpos, SEEK_SET); (gdb) bt #0 0x080784ff in file_fgetc (con=0xbfffc8a0) at connections.c:291 #1 0x080a9f12 in con_getc () at /ext/...
2003 Apr 21
0
sweave provoked segfault (PR#2809)
...e `demo()' for some demos, `help()' for on-line help, or `help.start()' for a HTML browser interface to help. Type `q()' to quit R. library(tools) > > library(tools) > gctorture() > checkVignettes(dir='/home/paul/dse/src/pac/monitor', workdir = 'cur', keepfiles=TRUE) Program received signal SIGSEGV, Segmentation fault. 0x080c1598 in RunGenCollect (size_needed=0) at memory.c:1210 1210 PROCESS_NODES(); (gdb) bt #0 0x080c1598 in RunGenCollect (size_needed=0) at memory.c:1210 #1 0x080c3089 in R_gc_internal (size_needed=0) at memory.c:1865 #2 0x08...
2013 Jul 12
14
[LLVMdev] [Proposal] Parallelize post-IPO stage.
...P; +} + +// ///////////////////////////////////////////////////////////////////////////// +// +// Implementation of IPOFile and IPOFileMgr +// +// ///////////////////////////////////////////////////////////////////////////// +IPOFile::IPOFile(const char *DirName, const char* BaseName, bool KeepFile) + : Fname(BaseName), Fpath(DirName), Keep(KeepFile) { + Fpath = Fpath + "/" + BaseName; + Keep = true; +} + +IPOFile::~IPOFile() { + if (Keep) + sys::fs::remove(Fpath); +} + +IPOFileMgr::IPOFileMgr(): WorkDir("llvmipo") { + IRFiles.reserve(20); + ObjFiles.reserve(20);...