perl.cvs.parrot
[Top] [All Lists]

[svn:parrot] r29904 - branches/pdd25cx/src

Subject: [svn:parrot] r29904 - branches/pdd25cx/src
From: coke@xxxxxxxxxxxx
Date: Wed, 30 Jul 2008 22:43:27 -0700 (PDT)
Newsgroups: perl.cvs.parrot

Author: coke
Date: Wed Jul 30 22:43:26 2008
New Revision: 29904

Modified:
   branches/pdd25cx/src/hash.c

Log:
update some real_exceptions that probably got merged in from trunk.


Modified: branches/pdd25cx/src/hash.c
==============================================================================
--- branches/pdd25cx/src/hash.c (original)
+++ branches/pdd25cx/src/hash.c Wed Jul 30 22:43:26 2008
@@ -395,7 +395,7 @@
 
         while (bucket) {
             if (++found > entries)
-                real_exception(interp, NULL, 1,
+            Parrot_ex_throw_from_c_args(interp, NULL, 1,
                         "Detected hash corruption at hash %p entries %d",
                         hash, (int)entries);
 
@@ -419,7 +419,7 @@
 
         while (bucket) {
             if (++found > entries)
-                real_exception(interp, NULL, 1,
+                Parrot_ex_throw_from_c_args(interp, NULL, 1,
                         "Detected hash corruption at hash %p entries %d",
                         hash, (int)entries);
 

<Prev in Thread] Current Thread [Next in Thread>
  • [svn:parrot] r29904 - branches/pdd25cx/src, coke <=