Changes between Version 98 and Version 99 of processus_thread


Ignore:
Timestamp:
Jun 21, 2018, 4:30:04 PM (6 years ago)
Author:
nicolas.van.phan@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • processus_thread

    v98 v99  
    2525 * '''KILLED''' : the process received a SIGKILL signal. It will be destroyed by the parent process executing a wait() sys call.
    2626
    27 There is a partial list of informations stored in a process descriptor ( process_t  in ALMOS-MKH ):
     27You can find below a partial list of informations stored in a process descriptor ( process_t  in ALMOS-MKH ):
    2828- '''PID''' :  proces identifier.
    2929- '''PPID''' : parent process identifier,
     
    5858This implementation of ALMOS-MKH does not support thread migration: a thread is pinned on a given core in a given cluster. In the future process migration mechanism, all threads of given process in a given cluster can migrate to another cluster for load balancing. This mechanism is not implemented yet (february 2018), and will require to distinguish the kernel thread identifier (TRDID, that will be modified by a migration), and the user thread identifier (THREAD, that cannot be modified by a migration). In the current implementation, the user identifier (returned by the pthread_create() sys call, is identical to the kernel identifier.
    5959
    60 There is a partial list of informations stored in a thread descriptor (thread_t in ALMOS-MKH):
     60You can find below a partial list of informations stored in a thread descriptor (thread_t in ALMOS-MKH):
    6161 * '''TRDID''' : thread identifier
    6262 * '''TYPE''' : KERNEL / USER / IDLE / RPC