]> gitweb.factorcode.org Git - factor.git/commitdiff
whitespace
authorJoe Groff <arcata@gmail.com>
Tue, 1 Nov 2011 00:43:18 +0000 (17:43 -0700)
committerJoe Groff <arcata@gmail.com>
Wed, 2 Nov 2011 20:23:13 +0000 (13:23 -0700)
vm/primitives.hpp
vm/utilities.hpp

index 36de59d0898096cf4ab989b7c85c0e84b2cb565e..fe3a89a9915dc1d62c7f7f587cd2f9fe112d3010 100644 (file)
@@ -37,7 +37,7 @@ namespace factor
        _(callstack_for) \
        _(callstack_to_array) \
        _(check_datastack) \
-        _(clear_samples) \
+       _(clear_samples) \
        _(clone) \
        _(code_blocks) \
        _(code_room) \
@@ -91,7 +91,7 @@ namespace factor
        _(ftell) \
        _(full_gc) \
        _(fwrite) \
-        _(get_samples) \
+       _(get_samples) \
        _(identity_hashcode) \
        _(innermost_stack_frame_executing) \
        _(innermost_stack_frame_scan) \
index 67692d442b28ea5def39ab6da29cbcf74cdb79ba..da515d80cef8bc6c3e367a1f7bdab136f71a1820 100755 (executable)
@@ -59,7 +59,7 @@ VM_C_API void *factor_memcpy(void *dst, void *src, size_t len);
 
                #define FACTOR_ATOMIC_CAS(ptr, old_val, new_val) \
                        (InterlockedCompareExchange64( \
-                            reinterpret_cast<volatile LONG64 *>(ptr), new_val, old_val) == old_val)
+                               reinterpret_cast<volatile LONG64 *>(ptr), new_val, old_val) == old_val)
 
                #define FACTOR_ATOMIC_ADD(ptr, val) \
                        InterlockedAdd64(reinterpret_cast<volatile LONG64 *>(ptr), val)
@@ -71,7 +71,7 @@ VM_C_API void *factor_memcpy(void *dst, void *src, size_t len);
 
                #define FACTOR_ATOMIC_CAS(ptr, old_val, new_val) \
                        (InterlockedCompareExchange( \
-                            reinterpret_cast<volatile LONG *>(ptr), new_val, old_val) == old_val)
+                               reinterpret_cast<volatile LONG *>(ptr), new_val, old_val) == old_val)
 
                #define FACTOR_ATOMIC_ADD(ptr, val) \
                        InterlockedAdd(reinterpret_cast<volatile LONG *>(ptr), val)