Fonction shmctl Perl
La description
Cette fonction contrôle le segment de mémoire partagée référencé par ID, en utilisant CMD avec ARG. Vous devrez importer le module IPC :: SysV pour obtenir les jetons de commande définis ci-dessous dans le tableau.
Command Description
IPC_STAT Places the current value of each member of
the data structure associated with ID into
the scalar ARG
IPC_SET Sets the value of the following members o
of the data structure associated with ID to
the corresponding values found in the packed
scalar ARG
IPC_RMID Removes the shared memory identifier specified
by ID from the system and destroys the shared
memory segment and data structure associated
with it
SHM_LOCK Locks the shared memory segment specified by ID
in memory
SHM_UNLOCK Unlocks the shared memory segment specified by ID
Syntaxe
Voici la syntaxe simple de cette fonction -
shmctl ID, CMD, ARG
Valeur de retour
Cette fonction renvoie undef en cas d'échec et 0 mais vrai si la valeur de retour de shmctl () est 0.
Exemple
Voici l'exemple de code montrant son utilisation de base -
#!/usr/bin/perl
# Assume this file name is writer.pl
use IPC::SysV;
#use these next two lines if the previous use fails.
eval 'sub IPC_CREAT {0001000}' unless defined &IPC_CREAT;
eval 'sub IPC_RMID {0}' unless defined &IPC_RMID;
$key = 12345;
$size = 80;
$message = "Pennyfarthingale.";
# Create the shared memory segment
$key = shmget($key, $size, &IPC_CREAT | 0777 ) or die "Can't shmget: $!";
# Place a string in itl
shmwrite( $id, $message, 0, 80 ) or die "Can't shmwrite: $!";
sleep 20;
# Delete it;
shmctl( $id, &OPC_RMID, 0 ) or die "Can't shmctl: $! ";
Ecrivez un programme de lecture qui récupère le segment mémoire correspondant à $ key et lit son contenu à l'aide de shmread () ;.
#!/usr/bin/perl
# Assume this file name is reader.pl
$key = 12345;
$size = 80;
# Identify the shared memory segment
$id = shmget( $key, $size, 0777 ) or die "Can't shmget: $!";
# Read its contents itno a string
shmread($id, $var, 0, $size) or die "Can't shmread: $!";
print $var;
Maintenant, lancez d'abord le programme writer.pl en arrière-plan, puis reader.pl, puis il produira le résultat suivant.
$perl writer.pl&
$perl reader.pl
Pennyfrathingale