]> git.llucax.com Git - z.facultad/75.74/practicos.git/commitdiff
Se ponen archivos temporales en el directorio actual.
authorLeandro Lucarella <llucax@gmail.com>
Tue, 25 Apr 2006 16:16:50 +0000 (16:16 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Tue, 25 Apr 2006 16:16:50 +0000 (16:16 +0000)
practicas/practica2/P02e2311.cpp
practicas/practica2/P02e2311.sh
practicas/practica2/P02e2321.cpp
practicas/practica2/P02e2321.sh

index 4e4aa434fdbd0a76bc8a290d95f81c5dbe73b17a..28cc9a067f23e834a8129568f5a22bc95a2338fd 100644 (file)
@@ -18,7 +18,7 @@ using std::cout;
 using std::endl;
 
 // Nombre del pipe
-#define PIPE "/tmp/77891_P02e2311"
+#define PIPE "77891_P02e2311"
 
 // Prueba que un valor no sea -1, saliendo con error si es así.
 #define TEST(v) do { if ((v) == -1) { perror("P02e2221"); exit(200); } } while (0)
index 684b079f70db066d165a88461b6b88a39e669c5b..ea642e8fe81c7d1d85330b55874e86c835ba5f04 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-FIFO=/tmp/77891_P02e2311
+FIFO=77891_P02e2311
 
 # Creo named pipe
 mkfifo $FIFO
index aa1e7731c88d240ef749ab5d6a99a315233464eb..8bb34289c1056e50994a50ba706ab84f3156ac21 100644 (file)
@@ -20,7 +20,7 @@ using std::endl;
 using std::ostringstream;
 
 // Nombre base del pipe
-#define PIPE_BASE "/tmp/77891_P02e2321_"
+#define PIPE_BASE "77891_P02e2321_"
 
 /// Nombres de los procesos
 enum proc_t { PRODUCTOR1, PRODUCTOR2, PRODUCTOR3, CONSUMIDOR1, CONSUMIDOR2 };
index 4cd4477cba91d40a616f32b119ee6d6657a5b13d..51670578cdd4cf6d2b43e1154f8df7ca3f3a4c07 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-FIFO_BASE=/tmp/77891_P02e2321_
+FIFO_BASE=77891_P02e2321_
 
 # Creo named pipes
 for i in 0 1 2;