]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/os-linux-arm.cpp
Put brackets around ipv6 addresses in `inet6 present`
[factor.git] / vm / os-linux-arm.cpp
index c2026226eed3a7746f251883f33895252081d47f..13ef08c17eab9af6aeb9fad875612968ca64bd85 100644 (file)
@@ -5,12 +5,12 @@ namespace factor {
 void flush_icache(cell start, cell len) {
   int result;
 
-  /* XXX: why doesn't this work on Nokia n800? It should behave
-          identically to the below assembly. */
-  /* result = syscall(__ARM_NR_cacheflush,start,start + len,0); */
+  // XXX: why doesn't this work on Nokia n800? It should behave
+  //      identically to the below assembly.
+  // result = syscall(__ARM_NR_cacheflush,start,start + len,0);
 
-  /* Assembly swiped from
-     http://lists.arm.linux.org.uk/pipermail/linux-arm/2002-July/003931.html */
+  // Assembly swiped from
+  // http://lists.arm.linux.org.uk/pipermail/linux-arm/2002-July/003931.html
   __asm__ __volatile__("mov     r0, %1\n"
                        "sub     r1, %2, #1\n"
                        "mov     r2, #0\n"