search for: registerhandl

Displaying 9 results from an estimated 9 matches for "registerhandl".

Did you mean: registerhandler
2014 Feb 27
2
[LLVMdev] multithreaded use of llvm::sys::RemoveFileOnSignal
...; bool ret = ti.run(); In order to speed up compilation of several sources, I call the above code concurrently in separate threads, with each thread compiling its own source code. However, this does not work because clang::CompilerInstance calls llvm::Sys::RemoveFileOnSignal which in turn calls RegisterHandlers() which is not re-entrant. Is there a way to make RegisterHandlers() re-entrant? I do call llvm::start_multi_threaded() before any of this, hoping that it will make llvm routines thread-safe, but to no avail. Also, is there any other way of doing parallel compilation? thx Vikas. ========= ---...
2009 Mar 08
3
[LLVMdev] Compiling LLVM on MinGW
...ys' has not been declared Win32/Signals.inc: In function `void AddSignalHandler(void (*)(void*), void*)': Win32/Signals.inc:266: error: `KillSigs' was not declared in this scope Win32/Signals.inc:266: error: `KillSigsEnd' was not declared in this scope Win32/Signals.inc:266: error: `RegisterHandler' was not declared in this scope Win32/Signals.inc:266: warning: unused variable 'KillSigs' Win32/Signals.inc:266: warning: unused variable 'KillSigsEnd' Win32/Signals.inc:266: warning: unused variable 'RegisterHandler' make[1]: *** [/Desktop/Workspace/llvm/llvm-top/lib...
2009 Mar 08
0
[LLVMdev] Compiling LLVM on MinGW
...Signals.inc: In function `void AddSignalHandler(void (*) > (void*), void*)': > Win32/Signals.inc:266: error: `KillSigs' was not declared in this > scope > Win32/Signals.inc:266: error: `KillSigsEnd' was not declared in this > scope > Win32/Signals.inc:266: error: `RegisterHandler' was not declared in > this scope > Win32/Signals.inc:266: warning: unused variable 'KillSigs' > Win32/Signals.inc:266: warning: unused variable 'KillSigsEnd' > Win32/Signals.inc:266: warning: unused variable 'RegisterHandler' > make[1]: *** [/Desktop/...
2009 Mar 08
2
[LLVMdev] Compiling LLVM on MinGW
I'm trying to compile the top version of LLVM with MinGW, but I'm getting compilation errors. They seem to be caused by the changes in rev 66072. Has anyone compiled on MinGW? Since I just installed MinGW on this computer it could be my problem. (I noticed that LLVM 2.5 still doesn't come with binaries for the libraries on MinGW.) -- Lennarft
2009 Mar 08
0
[LLVMdev] Compiling LLVM on MinGW
On Sunday 08 March 2009 01:42:42 Lennart Augustsson wrote: > I'm trying to compile the top version of LLVM with MinGW, but I'm > getting compilation errors. What kind of errors? Ciao, Duncan.
2009 Mar 08
2
[LLVMdev] Compiling LLVM on MinGW
...ction `void AddSignalHandler(void (*) >> (void*), void*)': >> Win32/Signals.inc:266: error: `KillSigs' was not declared in this >> scope >> Win32/Signals.inc:266: error: `KillSigsEnd' was not declared in this >> scope >> Win32/Signals.inc:266: error: `RegisterHandler' was not declared in >> this scope >> Win32/Signals.inc:266: warning: unused variable 'KillSigs' >> Win32/Signals.inc:266: warning: unused variable 'KillSigsEnd' >> Win32/Signals.inc:266: warning: unused variable 'RegisterHandler' >> make[...
2006 Dec 21
1
iplots/JGR on OS X 10.4.8
...: package 'iplots' could not be loaded Exception in thread "main" java.lang.NoClassDefFoundError at com.apple.mrj.MRJPriv.registerAboutHandler(MRJPriv.java:281) at com.apple.mrj.MRJApplicationUtils.registerAboutHandler(MRJApplicationUtils.java:64) at org.rosuda.util.PlatformMac.registerHandlers(PlatformMac.java:43) at org.rosuda.util.PlatformMac.<init>(PlatformMac.java:20) at org.rosuda.iplots.PlatformMac.<init>(PlatformMac.java:16) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeCon...
2004 Nov 15
0
[LLVMdev] Fixes for windows version
...1.10 > +++ lib/System/Win32/Signals.cpp 15 Nov 2004 08:35:34 -0000 > @@ -72,7 +72,7 @@ > } > > // RemoveFileOnSignal - The public API > -void sys::RemoveFileOnSignal(const std::string &Filename) { > +void sys::RemoveFileOnSignal(const sys::Path &Filename) { > RegisterHandler(); > > if (CleanupExecuted) > @@ -81,7 +81,7 @@ > if (FilesToRemove == NULL) > FilesToRemove = new std::vector<sys::Path>; > > - FilesToRemove->push_back(sys::Path(Filename)); > + FilesToRemove->push_back(sys::Path(Filename.get())); > >...
2004 Nov 15
2
[LLVMdev] Fixes for windows version
Hi, when I updated the sources today there were several small problems that stopped the windows version from compiling, here are the patches m. -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: win32patches.txt URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20041115/34634455/attachment.txt>