search for: terminatethread

Displaying 6 results from an estimated 6 matches for "terminatethread".

2012 Jul 19
2
[LLVMdev] how to stop a llvm thread
Hi, how can I safely stop a llvm thread, so that the thread can clean up. Using the WINAPI TerminateThread() is therefore not an alternative. I work with vs2010. Thanks Duc -- IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any o...
2012 Jul 19
0
[LLVMdev] how to stop a llvm thread
Hi Duc, > how can I safely stop a llvm thread, so that the thread can clean up. Using the > WINAPI TerminateThread() is therefore not an alternative. I work with vs2010. LLVM doesn't have any threads. Ciao, Duncan.
2008 May 18
2
Pure win32-thread library?
...)[0] end def join(limit = INFINITE) limit = limit * 1000 unless limit == INFINITE WaitForSingleObject(@thread, limit) ReleaseMutex(@@mutex) end def terminate exit_code = [0].pack(''L'') return nil unless TerminateThread(@thread, exit_code) end def exit ExitThread(0) end def priority GetThreadPriority(@thread) end def priority=(value) unless SetThreadPriority(@thread, value) raise Error, get_last_error end end...
2019 Aug 02
2
[RFC] Stack overflow and optimizations
...read/program termination and dtors/atexit funcs are called (e.g. by calling exit()) 4b. Call/invoke triggers thread/program immediate termination (e.g. by calling abort()) 5. Signal handler is executed and which kills the program 6. Immediate thread/program termination by external cause (e.g. by , `TerminateThread`, `kill -9`, kernel panic, power switch) Michael
2000 Jun 20
3
WinAmp Plugin
Hi, I downloaded afew off files from the site (www.vorbis.com) and also downloaded the winamp plugin (dll file), but I am unable to play the off files. -- Ramakrishnan.M | Phone : (+91-80)-5099132 DSP Applications Group, Texas Instruments | email : rkrishnan@ti.com Bangalore, India | rkrishnan_m@yahoo.com ---
2000 Jul 29
5
ogg123 HTTP streaming
I am about to commit HTTP streaming code for ogg123. This has no relation to the discussion about "real" steaming Ogg; it just downloads and plays at the same time. But unless you have a direct T3 connection, it'll almost definately break up quite frequently. Solution? Buffer. But I have other things to work on for the rest of the day... Any screaming objections? This has been