Descrição
Método Python tcsetpgrp()define o grupo de processos associado ao terminal fornecido por fd (um descritor de arquivo aberto conforme retornado por os.open () ) para pg.
Sintaxe
A seguir está a sintaxe para tcsetpgrp() método -
os.tcsetpgrp(fd, pg)
Parâmetros
Valor de retorno
Este método não retorna nenhum valor.
Exemplo
O exemplo a seguir mostra o uso do método tcsetpgrp ().
# !/usr/bin/python
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!!"
Quando executamos o programa acima, ele produz o seguinte resultado -
Current working dir is :/tmp
the process group associated is:
2672
done
Closed the file successfully!!