[svn:parrot] r44236 - branches/sys_mem_reduce/include/parrot

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sat Feb 20 13:09:13 UTC 2010


Author: mikehh
Date: Sat Feb 20 13:09:11 2010
New Revision: 44236
URL: https://trac.parrot.org/parrot/changeset/44236

Log:
there should be at least one space between a C keyword and any subsequent open parenthesis

Modified:
   branches/sys_mem_reduce/include/parrot/memory.h

Modified: branches/sys_mem_reduce/include/parrot/memory.h
==============================================================================
--- branches/sys_mem_reduce/include/parrot/memory.h	Sat Feb 20 12:58:36 2010	(r44235)
+++ branches/sys_mem_reduce/include/parrot/memory.h	Sat Feb 20 13:09:11 2010	(r44236)
@@ -1,5 +1,5 @@
 /* memory.h
- *  Copyright (C) 2001-2008, Parrot Foundation.
+ *  Copyright (C) 2001-2010, Parrot Foundation.
  *  SVN Info
  *     $Id$
  *  Overview:
@@ -29,34 +29,34 @@
 
 #define mem_internal_realloc(x, y) mem__internal_realloc((x), (y), __FILE__, __LINE__)
 #define mem_internal_realloc_zeroed(p, x, y) mem__internal_realloc_zeroed((p), (x), (y), __FILE__, __LINE__)
-#define mem_internal_realloc_n_zeroed_typed(p, x, y, type) ((type)*)mem__internal_realloc_zeroed((p), (x) * sizeof(type), (y) * sizeof(type), __FILE__, __LINE__)
+#define mem_internal_realloc_n_zeroed_typed(p, x, y, type) ((type)*)mem__internal_realloc_zeroed((p), (x) * sizeof (type), (y) * sizeof (type), __FILE__, __LINE__)
 #define mem_internal_free(x) mem__internal_free((x), __FILE__, __LINE__)
 
 #define mem_sys_memcopy memcpy
 #define mem_sys_memmove memmove
 
 #define mem_allocate_typed(type)            (type *)mem_sys_allocate(sizeof (type))
-#define mem_allocate_n_typed(n, type)       (type *)mem_sys_allocate((n) * sizeof(type))
+#define mem_allocate_n_typed(n, type)       (type *)mem_sys_allocate((n) * sizeof (type))
 #define mem_allocate_zeroed_typed(type)     (type *)mem_sys_allocate_zeroed(sizeof (type))
-#define mem_allocate_n_zeroed_typed(n, type) (type *)mem_sys_allocate_zeroed((n) * sizeof(type))
-#define mem_realloc_n_typed(p, n, type)     (p) = (type *)mem_sys_realloc((p), (n)*sizeof(type))
+#define mem_allocate_n_zeroed_typed(n, type) (type *)mem_sys_allocate_zeroed((n) * sizeof (type))
+#define mem_realloc_n_typed(p, n, type)     (p) = (type *)mem_sys_realloc((p), (n) * sizeof (type))
 
 #define mem_gc_allocate_typed(i, type) \
         (type *)Parrot_gc_allocate_memory_chunk((i), sizeof (type))
 #define mem_gc_allocate_n_typed(i, n, type) \
-        (type *)Parrot_gc_allocate_memory_chunk((i), (n) * sizeof(type))
+        (type *)Parrot_gc_allocate_memory_chunk((i), (n) * sizeof (type))
 #define mem_gc_realloc_n_typed(i, p, n, type) \
-        (type *)Parrot_gc_reallocate_memory_chunk((i), (p), (n)*sizeof(type))
+        (type *)Parrot_gc_reallocate_memory_chunk((i), (p), (n) * sizeof (type))
 #define mem_gc_allocate_zeroed_typed(i, type) \
         (type *)Parrot_gc_allocate_memory_chunk_with_interior_pointers((i), sizeof (type))
 #define mem_gc_allocate_n_zeroed_typed(i, n, type) \
-        (type *)Parrot_gc_allocate_memory_chunk_with_interior_pointers((i), (n) * sizeof(type))
+        (type *)Parrot_gc_allocate_memory_chunk_with_interior_pointers((i), (n) * sizeof (type))
 #define mem_gc_realloc_n_typed_zeroed(i, p, n, o, type) \
-        (type *)Parrot_gc_reallocate_memory_chunk_with_interior_pointers((i), (p), (n)*sizeof(type), (o)*sizeof(type))
+        (type *)Parrot_gc_reallocate_memory_chunk_with_interior_pointers((i), (p), (n) * sizeof (type), (o) * sizeof (type))
 #define mem_gc_free(i, p) \
         Parrot_gc_free_memory_chunk((i), (p))
 
-#define mem_copy_n_typed(dest, src, n, type) memcpy((dest), (src), (n)*sizeof(type))
+#define mem_copy_n_typed(dest, src, n, type) memcpy((dest), (src), (n)*sizeof (type))
 
 /* HEADERIZER BEGIN: src/gc/alloc_memory.c */
 /* Don't modify between HEADERIZER BEGIN / HEADERIZER END.  Your changes will be lost. */


More information about the parrot-commits mailing list