Nuova figura e correzioni di Francesco Poli riguardo l'endianess
authorSimone Piccardi <piccardi@gnulinux.it>
Sun, 1 Jun 2003 21:41:28 +0000 (21:41 +0000)
committerSimone Piccardi <piccardi@gnulinux.it>
Sun, 1 Jun 2003 21:41:28 +0000 (21:41 +0000)
ChangeLog
elemtcp.tex
img/endianess.dia [new file with mode: 0644]
socket.tex
sources/endian.c [new file with mode: 0644]

index dbbeb1e4a8dae88ac6c2ac78d0d6546150d0631a..e0a57ca69c0b758173bcc6708ec9197a9ae75374 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-06-01  Simone Piccardi  <piccardi@gont.earthsea.ea>
+
+       * socket.tex: Correzioni sulla endianes da Francesco Poli. 
+
 2003-04-23  Simone Piccardi  <piccardi@gont.earthsea.ea>
 
        * gapil: Aggiunti gli script e le configurazioni di
index 4ad16ac30f6bf9a0be5fad975802d02111e8d871..1962eddd978795e35433e4d043acc23a0126823e 100644 (file)
@@ -1711,7 +1711,7 @@ illustriamo immediatamente.
 \subsection{Il server: prima versione}
 \label{sec:TCPsimp_server_main}
 
-La prima versione del server, contenuta nel file \file{TCP\_echod_first.c}, è
+La prima versione del server, contenuta nel file \file{TCP\_echod\_first.c}, è
 riportata in \figref{fig:TCP_echo_server_first_code}. Come abbiamo fatto per
 il client anche il server è stato diviso in un corpo principale, costituito
 dalla funzione \code{main}, che è molto simile a quello visto nel precedente
diff --git a/img/endianess.dia b/img/endianess.dia
new file mode 100644 (file)
index 0000000..2d88d94
Binary files /dev/null and b/img/endianess.dia differ
index 06831e7ba290f3b0a4cdf460b9de4e6f2ee888c5..7ded670d34fa3ecc1f07a45f721b4b0dd8b3c7f8 100644 (file)
@@ -749,15 +749,24 @@ due modi, chiamati rispettivamente \textit{big endian} e \textit{little
 variabili intere (ed in genere in diretta corrispondenza a come sono poi in
 realtà cablati sui bus interni del computer).
 
-Per capire meglio il problema si consideri un intero a 16 bit scritto in una
-locazione di memoria posta ad un certo indirizzo. I singoli bit possono essere
-disposti un memoria in due modi: a partire dal più significativo o a partire
-dal meno significativo. Così nel primo caso si troverà il byte che contiene i
-bit più significativi all'indirizzo menzionato e il byte con i bit meno
-significativi nell'indirizzo successivo; questo ordinamento è detto
-\textit{little endian} dato che il dato finale è la parte ``piccola'' del
-numero. Il caso opposto, in cui si parte dal bit meno significativo è detto
-per lo stesso motivo \textit{big endian}.
+Per capire meglio il problema si consideri un intero a 32 bit scritto in una
+locazione di memoria posta ad un certo indirizzo. Come illustrato in
+\figref{fig:sock_endianess} i singoli bit possono essere disposti un memoria
+in due modi: a partire dal più significativo o a partire dal meno
+significativo.  Così nel primo caso si troverà il byte che contiene i bit più
+significativi all'indirizzo menzionato e il byte con i bit meno significativi
+nell'indirizzo successivo; questo ordinamento è detto \textit{big endian},
+dato che si trova per prima la parte più grande. Il caso opposto, in cui si
+parte dal bit meno significativo è detto per lo stesso motivo \textit{little
+  endian}.
+
+\begin{figure}[htb]
+  \centering
+  \includegraphics[height=5cm]{img/endianess}
+  \caption{Schema della disposizione dei dati in memoria a seconda della
+    \textit{endianess}\index{endianess}.}
+  \label{fig:sock_endianess}
+\end{figure}
 
 La \textit{endianess}\index{endianess} di un computer dipende essenzialmente
 dalla architettura hardware usata; Intel e Digital usano il \textit{little
diff --git a/sources/endian.c b/sources/endian.c
new file mode 100644 (file)
index 0000000..1e71896
--- /dev/null
@@ -0,0 +1,50 @@
+/* endian.c
+ *
+ * Copyright (C) 2003 Simone Piccardi
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or (at
+ * your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+/***************************************************************
+ *
+ * routine endian: routine to detect endianess
+ *
+ * Author: S. Piccardi
+ * May. 2003
+ *
+ * $Id: endian.c,v 1.1 2003/06/01 21:41:28 piccardi Exp $
+ *
+ ***************************************************************/
+#include <stdio.h>
+
+int main(int argc, char *argv[])
+{
+/*
+ * Variables definition
+ */
+    int i, val;
+    char buf[sizeof(int)];
+    char * char_ptr;
+    int * int_ptr;
+   
+    val = 0xABCDEF01;      /* endianess magic number */
+    int_ptr = (int *) buf; 
+    *int_ptr = val;
+    char_ptr = (char *) &val;
+    for (i=0; i<sizeof(int); i++) {
+       char_ptr[i] = buf[i];
+    }
+    printf("Value %x\n", val);
+    return 0;
+}