Loading AI tools
最小的编程指令序列由调度器可以独立管理 来自维基百科,自由的百科全书
線程(英語:thread)在計算機科學中,是將進程劃分為兩個或多個線程(實例)或子進程,由單處理器(單線程)或多處理器(多線程)或多核處理系統並發執行。
「線程」的各地常用名稱 | |
---|---|
中國大陸 | 線程 |
臺灣 | 執行緒 |
港澳 | 線程 |
執行緒有四種基本狀態,分別為:
SUN Solaris操作系統使用的線程叫做UNIX International線程,支持內核線程、輕權進程和用戶線程。一個進程可有大量用戶線程;大量用戶線程復用少量的輕權進程,輕權進程與內核線程一一對應。用戶級線程在調用核心服務時(如文件讀寫),需要「捆綁(bound)」在一個LWP上。永久捆綁(一個LWP固定被一個用戶級線程占用,該LWP移到LWP池之外)和臨時捆綁(從LWP池中臨時分配一個未被占用的LWP)。在調用系統服務時,如果所有LWP已被其他用戶級線程所占用(捆綁),則該線程阻塞直到有可用的LWP。如果LWP執行系統線程時阻塞(如read()
調用),則當前捆綁在LWP上的用戶級線程也阻塞。
UNIX International線程的頭文件是<thread.h>
。[1]
int thr_create(void * stack_base, size_t stack_size, void *(*start_routine,void *), void * arg, long flags, thread_t * new_thr);
其中flags包括:THR_BOUND(永久捆綁), THR_NEW_LWP(創建新LWP放入LWP池),若兩者同時指定則創建兩個新LWP,一個永久捆綁而另一個放入LWP池。
int thr_join(thread_t wait_for, thread_t *dead, void **status);
int thr_suspend(thread_t thr);
int thr_continue(thread_t thr);
void thr_exit(void *status);
thread_t thr_self( void );
POSIX線程(POSIX threads),簡稱Pthreads,是線程的POSIX標準。該標準定義了創建和操縱線程的一整套API。在類Unix操作系統(Unix、Linux、Mac OS X等)中,都使用Pthreads作為操作系統的線程[2][3][4]。Windows操作系統也有其移植版pthreads-win32[5]。
int pthread_create(pthread_t * thread, const pthread_attr_t * attr, void *(*start_routine)(void *), void *arg);
int pthread_join(pthread_t thread, void ** retval);
void pthread_exit(void *retval);
pthread_t pthread_self(void);
int pthread_cancel(pthread_t thread);
Win32線程是Windows API的一部分,上下文包括:寄存器、核心棧、線程環境塊和用戶棧。
Win32線程的頭文件是<Windows.h>
,僅適用於Windows操作系統。[8]
HANDLE WINAPI CreateThread(LPSECURITY_ATTRIBUTES lpThreadAttributes, SIZE_T dwStackSize, LPTHREAD_START_ROUTINE lpStartAddress, LPVOID lpParameter, DWORD dwCreationFlags, LPDWORD lpThreadId);
VOID WINAPI ExitThread(DWORD dwExitCode);
DWORD WINAPI SuspendThread( HANDLE hThread );
DWORD WINAPI ResumeThread(HANDLE hThread);
DWORD WINAPI WaitForSingleObject(HANDLE hHandle, DWORD dwMilliseconds);
DWORD WINAPI GetCurrentThreadId(void);
HANDLE WINAPI GetCurrentThread(void);
2011年8月12日,國際標準化組織(ISO)發布了第三個C++標準,即ISO/IEC 14882:2011,簡稱ISO C++ 11標準。該標準第一次把線程的概念引入C++標準庫。Windows平台運行的VS2012和Linux平台運行的g++4.7,都完美支持C++11線程。
C++ 11線程的頭文件是<thread>
。[9]
std::thread::thread(Function&& f, Args&&... args);
std::thread::join();
std::thread::detach();
std::thread::swap(thread& other);
2011年12月8日,國際標準化組織(ISO)發布了第三個C語言標準,即ISO 9899:2011,簡稱ISO C 11標準。該標準第一次把線程的概念引入C語言標準庫。
C11線程僅僅是個「建議標準」,也就是說100%遵守C11標準的C編譯器是可以不支持C11線程的。根據C11標準的規定,只要編譯器預定義了 __STDC_NO_THREADS__(C11),就可以沒有<threads.h>
頭文件,自然也就也沒有下列函數。
C11線程的頭文件是<threads.h>
。[10]
int thrd_create(thrd_t *thr, thrd_start_t func, void *arg);
_Noreturn void thrd_exit( int res );
int thrd_join(thrd_t thr, int *res);
thrd_t thrd_current();
run()
方法運行完畢,自行終止。cancel()
方法調用。shutdown()
和shutdownNow()
方法。stop()
方法,但已不推薦使用。Seamless Wikipedia browsing. On steroids.
Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.
Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.