Metodo Python os.tcsetpgrp ()

Descrizione

Metodo Python tcsetpgrp()imposta il gruppo di processi associato al terminale fornito da fd (un descrittore di file aperto restituito da os.open () ) a pg.

Sintassi

Di seguito è riportata la sintassi per tcsetpgrp() metodo -

os.tcsetpgrp(fd, pg)

Parametri

  • fd - Questo è il descrittore di file.

  • pg - Questo imposta il gruppo di processi su pg.

Valore di ritorno

Questo metodo non restituisce alcun valore.

Esempio

L'esempio seguente mostra l'utilizzo del metodo 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 eseguiamo il programma sopra, produce il seguente risultato:

Current working dir is :/tmp
the process group associated is:
2672
done
Closed the file successfully!!