GNU/Linux >> Linux Esercitazione >  >> Linux

ID di un thread Python come riportato da top

Ecco una patch per sostituire l'identificatore del thread python con TID come visualizzato in htop :

def patch_thread_identifier():
    """Replace python thread identifier by TID."""
    # Imports
    import threading, ctypes
    # Define get tid function
    def gettid():
        """Get TID as displayed by htop."""
        libc = 'libc.so.6'
        for cmd in (186, 224, 178):
            tid = ctypes.CDLL(libc).syscall(cmd)
            if tid != -1:
                return tid
    # Get current thread
    current = threading.current_thread()
    # Patch get_ident (or _get_ident in python 2)
    threading.get_ident = threading._get_ident = gettid
    # Update active dictionary
    threading._active[gettid()] = threading._active.pop(current.ident)
    # Set new identifier for the current thread
    current._set_ident()
    # Done
    print("threading._get_ident patched!")

Grazie a questo post, ho ottenuto che i thread Python riportassero i rispettivi ID thread. Prima fai un grep -r 'SYS_gettid' /usr/include/' . Ho una riga:#define SYS_gettid __NR_gettid Dopo un ulteriore grep di grep -r '__NR_gettid' /usr/include/ , ho un sacco di righe corrispondenti:

/usr/include/x86_64-linux-gnu/asm/unistd_32.h:#define __NR_gettid 224
/usr/include/x86_64-linux-gnu/asm/unistd_64.h:#define __NR_gettid 186
/usr/include/asm-generic/unistd.h:#define __NR_gettid 178

Ora scegli quello che corrisponde alla tua architettura. Il mio era 186. Ora includi questo codice in tutti i tuoi script di thread Python per ottenere l'ID del thread visto dal sistema operativo:

import ctypes
tid = ctypes.CDLL('libc.so.6').syscall(186)

Linux
  1. Come installare Python su Linux

  2. Conversione del codice Python 2 in Python 3

  3. I 20 principali usi di Linux

  4. Procedura:programmazione socket in Python

  5. ID thread e handle del thread

Installa Python 3 su Redhat 8

Come controllare la versione di Python

Python if..else Istruzione

Come usare il comando TOP

Comando principale di Linux

I 20 migliori IDE Python per Linux. Alcuni di loro sono Open Source