CVSROOT: /cvsroot/dotgnu-pnet
Module name: pnet
Branch:
Changes by: Klaus Treichel <[EMAIL PROTECTED]> 06/02/25 17:58:55
Modified files:
. : ChangeLog
engine : lib_reflect.c
Log message:
Add missed change in engine/lib_reflect.c
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/dotgnu-pnet/pnet/ChangeLog.diff?tr1=1.3295&tr2=1.3296&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/dotgnu-pnet/pnet/engine/lib_reflect.c.diff?tr1=1.75&tr2=1.76&r1=text&r2=text
Patches:
Index: pnet/ChangeLog
diff -u pnet/ChangeLog:1.3295 pnet/ChangeLog:1.3296
--- pnet/ChangeLog:1.3295 Sat Feb 25 17:33:59 2006
+++ pnet/ChangeLog Sat Feb 25 17:58:55 2006
@@ -5,6 +5,10 @@
* engine/jitc.c: Exchange the return values in ILJitCallMethod to 0 for
failure and 1 for success.
+ * engine/lib_reflect.c: Increase the number of callframes by one to look
+ for in _IL_Assembly_GetCallingAssembly and
+ _IL_Assembly_GetExecutingAssembly.
+
2006-02-23 Gopal V <[EMAIL PROTECTED]>
* support/serial.c, support/il_serial.h: add IL_SERIAL_RFCOMM and
Index: pnet/engine/lib_reflect.c
diff -u pnet/engine/lib_reflect.c:1.75 pnet/engine/lib_reflect.c:1.76
--- pnet/engine/lib_reflect.c:1.75 Tue Feb 21 19:33:50 2006
+++ pnet/engine/lib_reflect.c Sat Feb 25 17:58:55 2006
@@ -862,7 +862,7 @@
ILObject *_IL_Assembly_GetCallingAssembly(ILExecThread *thread)
{
#ifdef IL_USE_JIT
- ILMethod *method = _ILJitGetCallingMethod(thread, 2);
+ ILMethod *method = _ILJitGetCallingMethod(thread, 3);
if(method)
{
return ImageToAssembly(thread, ILProgramItem_Image(method));
@@ -902,7 +902,7 @@
ILObject *_IL_Assembly_GetExecutingAssembly(ILExecThread *thread)
{
#ifdef IL_USE_JIT
- ILMethod *method = _ILJitGetCallingMethod(thread, 1);
+ ILMethod *method = _ILJitGetCallingMethod(thread, 2);
if(method)
{
return ImageToAssembly(thread, ILProgramItem_Image(method));
_______________________________________________
dotgnu-pnet-commits mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/dotgnu-pnet-commits