Ajout de l'exercice 1 et 2 du TP3
This commit is contained in:
parent
011d9b87ff
commit
9cf8c1470e
14
README.md
14
README.md
@ -324,3 +324,17 @@ XXXXXXXX BB BB BB BB BB BB BB BB BB BB BB BB BB BB BB BB |CCCCCCCCCCCCCCCC|
|
|||||||
- une deuxième passe avec des valeurs aléatoires (on utilisera le pseudo-fichier `/dev/urandom`)
|
- une deuxième passe avec des valeurs aléatoires (on utilisera le pseudo-fichier `/dev/urandom`)
|
||||||
- enfin, avant d'effacer le fichier, on le renomera de manière aléatoire.
|
- enfin, avant d'effacer le fichier, on le renomera de manière aléatoire.
|
||||||
>Toutes les E/S devront utilisées un cache.
|
>Toutes les E/S devront utilisées un cache.
|
||||||
|
|
||||||
|
# TP 3 : Processus
|
||||||
|
|
||||||
|
## Exercice 1
|
||||||
|
|
||||||
|
> Compilez et exécutez [ex1-stdio](TP3/Exo1/ex1-stdio.c) et [ex1-syscall](TP3/Exo1/ex1-syscall.c). Expliquez.
|
||||||
|
|
||||||
|
> Avec `stdio`, le printf écrit "NON" dans le cache, c'est pourquoi lors de l'utilisation du `fork` le printf écrit "NON" deux fois, alors qu'avec `syscall`, le write écrit "NON" directement dans la sortie standard, c'est pourquoi lors de l'utilisation du `fork` le printf écrit "NON" une seule fois.
|
||||||
|
|
||||||
|
## Exercice 2
|
||||||
|
|
||||||
|
> Compilez et exécutez [fork_and_fd1.c](TP3/Exo2/fork_and_fd1.c) et [fork_and_fd2.c](TP3/Exo2/fork_and_fd2.c). Expliquez.
|
||||||
|
|
||||||
|
>
|
12
TP3/Exo1/ex1-stdio.c
Normal file
12
TP3/Exo1/ex1-stdio.c
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
#include <sys/types.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
|
||||||
|
int main(){
|
||||||
|
|
||||||
|
printf("NON");
|
||||||
|
if (fork()) {
|
||||||
|
printf("OUI\n");
|
||||||
|
}
|
||||||
|
}
|
14
TP3/Exo1/ex1-syscall.c
Normal file
14
TP3/Exo1/ex1-syscall.c
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
#include <sys/types.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
|
||||||
|
int main(){
|
||||||
|
|
||||||
|
//printf("NON");
|
||||||
|
write(STDOUT_FILENO,"NON",3);
|
||||||
|
if (fork()) {
|
||||||
|
//printf("OUI\n");
|
||||||
|
write(STDOUT_FILENO,"OUI\n",4);
|
||||||
|
}
|
||||||
|
}
|
42
TP3/Exo2/fork_and_fd1.c
Normal file
42
TP3/Exo2/fork_and_fd1.c
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
#include <sys/types.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include<stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include<assert.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#define msg1 "je suis le pere"
|
||||||
|
#define msg2 "je suis le fils !!!"
|
||||||
|
|
||||||
|
int main(int argc,char * argv[]){
|
||||||
|
|
||||||
|
int outfd;
|
||||||
|
pid_t p;
|
||||||
|
|
||||||
|
if (argc != 2){
|
||||||
|
|
||||||
|
printf("%s file\n",argv[0]);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
//p=fork();
|
||||||
|
outfd = open(argv[1],O_WRONLY|O_CREAT,0644);
|
||||||
|
assert(outfd >= 0);
|
||||||
|
p=fork();
|
||||||
|
switch(p){
|
||||||
|
case (pid_t)-1 :
|
||||||
|
perror(NULL);
|
||||||
|
exit(2);
|
||||||
|
|
||||||
|
case (pid_t)0 :
|
||||||
|
write(outfd,msg2,strlen(msg2));
|
||||||
|
break;
|
||||||
|
default :
|
||||||
|
write (outfd,msg1,strlen(msg1));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
close(outfd);
|
||||||
|
}
|
42
TP3/Exo2/fork_and_fd2.c
Normal file
42
TP3/Exo2/fork_and_fd2.c
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
#include <sys/types.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include<stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include<assert.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#define msg1 "je suis le pere"
|
||||||
|
#define msg2 "je suis le fils !!!"
|
||||||
|
|
||||||
|
int main(int argc,char * argv[]){
|
||||||
|
|
||||||
|
int outfd;
|
||||||
|
pid_t p;
|
||||||
|
|
||||||
|
if (argc != 2){
|
||||||
|
|
||||||
|
printf("%s file\n",argv[0]);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
p=fork();
|
||||||
|
outfd = open(argv[1],O_WRONLY|O_CREAT,0644);
|
||||||
|
assert(outfd >= 0);
|
||||||
|
//p=fork();
|
||||||
|
switch(p){
|
||||||
|
case (pid_t)-1 :
|
||||||
|
perror(NULL);
|
||||||
|
exit(2);
|
||||||
|
|
||||||
|
case (pid_t)0 :
|
||||||
|
write(outfd,msg2,strlen(msg2));
|
||||||
|
break;
|
||||||
|
default :
|
||||||
|
write (outfd,msg1,strlen(msg1));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
close(outfd);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user