[svn:parrot] r44631 - in trunk: config/gen/makefiles lib/Parrot/Docs/Section runtime/parrot/library/HTTP src t/codingstd t/pmc

coke at svn.parrot.org coke at svn.parrot.org
Thu Mar 4 20:42:25 UTC 2010


Author: coke
Date: Thu Mar  4 20:42:24 2010
New Revision: 44631
URL: https://trac.parrot.org/parrot/changeset/44631

Log:
cleanup after removal of src/events.c, src/tsq.c

Modified:
   trunk/config/gen/makefiles/CFLAGS.in
   trunk/lib/Parrot/Docs/Section/C.pm
   trunk/runtime/parrot/library/HTTP/Daemon.pir
   trunk/src/thread.c
   trunk/t/codingstd/c_function_docs.t
   trunk/t/pmc/signal.t

Modified: trunk/config/gen/makefiles/CFLAGS.in
==============================================================================
--- trunk/config/gen/makefiles/CFLAGS.in	Thu Mar  4 20:39:13 2010	(r44630)
+++ trunk/config/gen/makefiles/CFLAGS.in	Thu Mar  4 20:42:24 2010	(r44631)
@@ -7,7 +7,6 @@
 #
 src/platform.c      -{-Wcast-qual}          # noisy
 src/spf_render.c    -{-Wformat-nonliteral}  # noisy
-src/tsq.c           -{@optimize@}           # never optimize tsq.c!
 
 # The src/ops/core_ops*.c files are challenging to optimize.
 # gcc can usually handle it, but don't assume any other compilers can,

Modified: trunk/lib/Parrot/Docs/Section/C.pm
==============================================================================
--- trunk/lib/Parrot/Docs/Section/C.pm	Thu Mar  4 20:39:13 2010	(r44630)
+++ trunk/lib/Parrot/Docs/Section/C.pm	Thu Mar  4 20:42:24 2010	(r44631)
@@ -218,11 +218,10 @@
             'Threads', '',
             $self->c_pair_item( '', 'thread' ),
             $self->c_header_item( '', 'thr_pthread' ),
-            $self->c_pair_item( '', 'tsq' ),
         ),
         $self->new_group(
             'Exceptions', '',
-            $self->c_pair_item( '', 'exceptions' ), $self->c_pair_item( '', 'events' ),
+            $self->c_pair_item( '', 'exceptions' )
         ),
         $self->new_group(
             'Memory', '',

Modified: trunk/runtime/parrot/library/HTTP/Daemon.pir
==============================================================================
--- trunk/runtime/parrot/library/HTTP/Daemon.pir	Thu Mar  4 20:39:13 2010	(r44630)
+++ trunk/runtime/parrot/library/HTTP/Daemon.pir	Thu Mar  4 20:42:24 2010	(r44631)
@@ -433,7 +433,7 @@
 .end
 
 # close all sockets
-# this needs enabling of SIGHUP in src/events.c but still doesn't
+# this needs enabling of SIGHUP but still doesn't
 # help against FIN_WAIT2 / TIME_WAIT state of connections
 .sub 'shutdown' :method
     .local pmc active, sock

Modified: trunk/src/thread.c
==============================================================================
--- trunk/src/thread.c	Thu Mar  4 20:39:13 2010	(r44630)
+++ trunk/src/thread.c	Thu Mar  4 20:42:24 2010	(r44631)
@@ -136,8 +136,6 @@
     , PARROT_ASSERT_ARG(interp))
 #define ASSERT_ARGS_pt_thread_wait __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
        PARROT_ASSERT_ARG(interp))
-#define ASSERT_ARGS_remove_queued_suspend_gc __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
-       PARROT_ASSERT_ARG(interp))
 #define ASSERT_ARGS_thread_func __attribute__unused__ int _ASSERT_ARGS_CHECK = (0)
 /* Don't modify between HEADERIZER BEGIN / HEADERIZER END.  Your changes will be lost. */
 /* HEADERIZER END: static */

Modified: trunk/t/codingstd/c_function_docs.t
==============================================================================
--- trunk/t/codingstd/c_function_docs.t	Thu Mar  4 20:39:13 2010	(r44630)
+++ trunk/t/codingstd/c_function_docs.t	Thu Mar  4 20:42:24 2010	(r44631)
@@ -121,7 +121,6 @@
 src/string/charset/binary.c
 src/string/charset/iso-8859-1.c
 src/string/charset/unicode.c
-src/tsq.c
 
 # Local Variables:
 #   mode: cperl

Modified: trunk/t/pmc/signal.t
==============================================================================
--- trunk/t/pmc/signal.t	Thu Mar  4 20:39:13 2010	(r44630)
+++ trunk/t/pmc/signal.t	Thu Mar  4 20:42:24 2010	(r44631)
@@ -22,8 +22,7 @@
 
 =cut
 
-# actually more platforms should work - all POSIX compliant ones - but
-# signals are currently not enabled for all in src/events.c
+# actually more platforms should work - all POSIX compliant ones
 # a second problem is to get the test doing the right thing: mainly figuring
 # out what PID to kill. The "ps" command isn't one of the portable ones.
 


More information about the parrot-commits mailing list