search for: uithread

Displaying 2 results from an estimated 2 matches for "uithread".

Did you mean: upthread
2005 Feb 09
0
[LLVMdev] Interactions with threads and native code
...ystem call. It turns out that this small test program executes > correctly with LLVM, which surprised me. Is this just because I got lucky, or > is this expected behaviour? That is expected behavior. You should be able to write programs that use clone(), native pthreads libraries, native uithreads, native win32 threads, etc. LLVM also fully supports the volatile attribute in C. > Does anyone have any thoughts about if or how LLVM should support threads? I > was thinking that it might be worthwhile to add a few thread primitives to > the llvm.* collection of instrinsics. Someth...
2005 Feb 09
2
[LLVMdev] Interactions with threads and native code
I have just begun investigating LLVM because it seems like it might be an ideal tool for building tools for playing with software. However, my current project is related to parallel programming on shared memory multiprocessor systems, so I need thread support. As far as I can tell, LLVM currently has no intrinsic support for threads, is this correct? I saw the bug that indicates that