[svn:parrot] r46818 - trunk/src/gc

petdance at svn.parrot.org petdance at svn.parrot.org
Thu May 20 16:57:29 UTC 2010


Author: petdance
Date: Thu May 20 16:57:28 2010
New Revision: 46818
URL: https://trac.parrot.org/parrot/changeset/46818

Log:
changed function pointers to NOTNULL instead of ARGIN

Modified:
   trunk/src/gc/gc_private.h
   trunk/src/gc/mark_sweep.c

Modified: trunk/src/gc/gc_private.h
==============================================================================
--- trunk/src/gc/gc_private.h	Thu May 20 12:39:18 2010	(r46817)
+++ trunk/src/gc/gc_private.h	Thu May 20 16:57:28 2010	(r46818)
@@ -352,7 +352,7 @@
     ARGMOD(Memory_Pools *mem_pools),
     int flag,
     ARGIN_NULLOK(void *arg),
-    ARGIN(pool_iter_fn func))
+    NOTNULL(pool_iter_fn func))
         __attribute__nonnull__(1)
         __attribute__nonnull__(2)
         __attribute__nonnull__(5)

Modified: trunk/src/gc/mark_sweep.c
==============================================================================
--- trunk/src/gc/mark_sweep.c	Thu May 20 12:39:18 2010	(r46817)
+++ trunk/src/gc/mark_sweep.c	Thu May 20 16:57:28 2010	(r46818)
@@ -840,7 +840,7 @@
 header_pools_iterate_callback(PARROT_INTERP,
         ARGMOD(Memory_Pools *mem_pools),
         int flag, ARGIN_NULLOK(void *arg),
-        ARGIN(pool_iter_fn func))
+        NOTNULL(pool_iter_fn func))
 {
     ASSERT_ARGS(header_pools_iterate_callback)
 


More information about the parrot-commits mailing list