Descripción
El método tcsetpgrp() establece el grupo de procesos asociado con el terminal dado por fd(un descriptor de archivo abierto como lo devuelve os.open () ) a la pág.
Sintaxis
A continuación se muestra la sintaxis de tcsetpgrp() método -
os.tcsetpgrp(fd, pg)
Parámetros
Valor devuelto
Este método no devuelve ningún valor.
Ejemplo
El siguiente ejemplo muestra el uso del método tcsetpgrp ().
# !/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)
# Setting the process group
os.tcsetpgrp(fd,2672)
print ("done")
os.close(fd)
print ("Closed the file successfully!!")
Resultado
Cuando ejecutamos el programa anterior, produce el siguiente resultado:
Current working dir is :/tmp
the process group associated is:
2672
done
Closed the file successfully!!