Python 3 - metodo os.tcgetpgrp ()
Descrizione
Il metodo tcgetpgrp() restituisce il gruppo di processi associato al terminale dato da fd(un descrittore di file aperto come restituito da os.open () )
Sintassi
Di seguito è riportata la sintassi per tcgetpgrp() metodo -
os.tcgetpgrp(fd)
Parametri
fd - Questo è il descrittore di file.
Valore di ritorno
Questo metodo restituisce il gruppo di processi.
Esempio
L'esempio seguente mostra l'utilizzo del metodo tcgetpgrp ().
# !/usr/bin/python3
import os, sys
# Showing current directory
print ("Current working dir :%s" %os.getcwd())
# Changing dir to /dev/tty
fd = os.open("/dev/tty",os.O_RDONLY)
f = os.tcgetpgrp(fd)
# Showing the process group
print ("the process group associated is: ")
print (f)
os.close(fd)
print ("Closed the file successfully!!")
Risultato
Quando eseguiamo il programma sopra, produce il seguente risultato:
Current working dir is :/tmp
the process group associated is:
2670
Closed the file successfully!!