[svn:parrot] r47162 - branches/gc_massacre/src/gc
bacek at svn.parrot.org
bacek at svn.parrot.org
Sun May 30 14:58:14 UTC 2010
Author: bacek
Date: Sun May 30 14:58:14 2010
New Revision: 47162
URL: https://trac.parrot.org/parrot/changeset/47162
Log:
Rerun headerizer
Modified:
branches/gc_massacre/src/gc/pool_allocator.h
Modified: branches/gc_massacre/src/gc/pool_allocator.h
==============================================================================
--- branches/gc_massacre/src/gc/pool_allocator.h Sun May 30 14:57:54 2010 (r47161)
+++ branches/gc_massacre/src/gc/pool_allocator.h Sun May 30 14:58:14 2010 (r47162)
@@ -75,13 +75,11 @@
FUNC_MODIFIES(*data);
PARROT_EXPORT
-int Parrot_gc_pool_is_owned(
- ARGMOD(Pool_Allocator *pool),
- ARGMOD(void *data))
+int Parrot_gc_pool_is_owned(ARGMOD(Pool_Allocator *pool), ARGMOD(void *ptr))
__attribute__nonnull__(1)
__attribute__nonnull__(2)
FUNC_MODIFIES(*pool)
- FUNC_MODIFIES(*data);
+ FUNC_MODIFIES(*ptr);
PARROT_CANNOT_RETURN_NULL
PARROT_MALLOC
@@ -99,7 +97,7 @@
, PARROT_ASSERT_ARG(data))
#define ASSERT_ARGS_Parrot_gc_pool_is_owned __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(pool) \
- , PARROT_ASSERT_ARG(data))
+ , PARROT_ASSERT_ARG(ptr))
#define ASSERT_ARGS_Parrot_gc_create_pool_allocator \
__attribute__unused__ int _ASSERT_ARGS_CHECK = (0)
/* Don't modify between HEADERIZER BEGIN / HEADERIZER END. Your changes will be lost. */
More information about the parrot-commits
mailing list