Changes between Version 38 and Version 39 of processus_thread


Ignore:
Timestamp:
Nov 7, 2017, 2:25:54 PM (6 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • processus_thread

    v38 v39  
    3737
    3838ALMOS-MKH defines four types of threads :
    39  * one '''USER''' thread is created by a pthread_create() system call.
    40  * one '''KERNEL''' thread is created by the kernel to execute a kernel service in a cluster.
    41  * one '''RPC''' thread is activated by the kernel to execute pending RPC requests.
    42  * the  '''IDLE''' thread is executed when there is no other thread to execute on a core.
     39 * one '''USR''' thread is created by a pthread_create() system call.
     40 * one '''DEV''' thread is created by the kernel to execute all I/O operations for a given channel device.
     41 * one '''RPC''' thread is activated by the kernel to execute pending RPC requests in the local RPC fifo.
     42 * the  '''IDL''' thread is executed when there is no other thread to execute on a core.
    4343
    4444From the point of view of scheduling, a thread can be in three states : RUNNING, RUNNABLE or BLOCKED.