You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2007/10/28 14:46:10 UTC

svn commit: r589351 - /harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/linux/signals_ia32.cpp

Author: hindessm
Date: Sun Oct 28 06:46:10 2007
New Revision: 589351

URL: http://svn.apache.org/viewvc?rev=589351&view=rev
Log:
Well, I've broken the windows build so now I might as well see if this
breaks the linux on too...  assert(1) does absolutely nothing so I assume
this is supposed to be assert(0).  There is a chance this might break
things that have been "accidentally" working previously.

Modified:
    harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/linux/signals_ia32.cpp

Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/linux/signals_ia32.cpp
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/linux/signals_ia32.cpp?rev=589351&r1=589350&r2=589351&view=diff
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/linux/signals_ia32.cpp (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/linux/signals_ia32.cpp Sun Oct 28 06:46:10 2007
@@ -682,7 +682,7 @@
         break;
     default:
         // Unknown signal
-        assert(1);
+        assert(0);
         break;
     }