[svn:parrot] r37941 - in trunk: config/gen/makefiles src t/codingstd

coke at svn.parrot.org coke at svn.parrot.org
Tue Apr 7 14:22:34 UTC 2009


Author: coke
Date: Tue Apr  7 14:22:33 2009
New Revision: 37941
URL: https://trac.parrot.org/parrot/changeset/37941

Log:
[cage] make sure src/exec.c is headerized

It was setup to be, but not run via 'make headerizer'. After h11n
it passes the function doc test.

Modified:
   trunk/config/gen/makefiles/root.in
   trunk/src/exec.c
   trunk/t/codingstd/c_function_docs.t

Modified: trunk/config/gen/makefiles/root.in
==============================================================================
--- trunk/config/gen/makefiles/root.in	Tue Apr  7 09:52:34 2009	(r37940)
+++ trunk/config/gen/makefiles/root.in	Tue Apr  7 14:22:33 2009	(r37941)
@@ -2302,6 +2302,7 @@
     $(O_FILES) \
     src/packdump$(O) \
     src/pbc_merge$(O) \
+    src/exec$(O) \
     $(PIRC_O_FILES)
 
 headerizer : $(SRC_DIR)/core_pmcs.c

Modified: trunk/src/exec.c
==============================================================================
--- trunk/src/exec.c	Tue Apr  7 09:52:34 2009	(r37940)
+++ trunk/src/exec.c	Tue Apr  7 14:22:33 2009	(r37941)
@@ -144,8 +144,8 @@
 
 /*
 
-=item C<static void add_data_member(Parrot_exec_objfile_t *obj,
-const void *src, size_t len)>
+=item C<static void add_data_member(Parrot_exec_objfile_t *obj, const void *src,
+size_t len)>
 
 Adds a member to the data section, storing the size of it at
 C<< obj->data_size[N] >>.
@@ -224,8 +224,8 @@
 
 /*
 
-=item C<int Parrot_exec_add_symbol(Parrot_exec_objfile_t *obj,
-const char *symbol, int stype)>
+=item C<int Parrot_exec_add_symbol(Parrot_exec_objfile_t *obj, const char
+*symbol, int stype)>
 
 Adds a symbol to the object file.
 
@@ -318,8 +318,8 @@
 
 /*
 
-=item C<void Parrot_exec_add_text_rellocation(Parrot_exec_objfile_t *obj,
-char *nptr, int type, const char *symbol, int disp)>
+=item C<void Parrot_exec_add_text_rellocation(Parrot_exec_objfile_t *obj, char
+*nptr, int type, const char *symbol, int disp)>
 
 Adds a text rellocation to the object file.
 
@@ -367,8 +367,8 @@
 
 /*
 
-=item C<static int symbol_list_find(const Parrot_exec_objfile_t *obj,
-const char *symbol)>
+=item C<static int symbol_list_find(const Parrot_exec_objfile_t *obj, const char
+*symbol)>
 
 Returns the index of C<symbol> in the symbol list. Returns -1 if it is
 not in the list.

Modified: trunk/t/codingstd/c_function_docs.t
==============================================================================
--- trunk/t/codingstd/c_function_docs.t	Tue Apr  7 09:52:34 2009	(r37940)
+++ trunk/t/codingstd/c_function_docs.t	Tue Apr  7 14:22:33 2009	(r37941)
@@ -129,7 +129,6 @@
 src/atomic/gcc_x86.c
 src/debug.c
 src/exceptions.c
-src/exec.c
 src/gc/res_lea.c
 src/io/io_string.c
 src/io/socket_api.c


More information about the parrot-commits mailing list