[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Pnet-developers] [NEWBIW} ilrun behaviour
From: |
vijay patil |
Subject: |
[Pnet-developers] [NEWBIW} ilrun behaviour |
Date: |
Thu, 20 May 2004 22:37:20 +0530 |
Hi
------------------
System info
Linux localhost.localdomain 2.4.20-8 #1 Thu Mar 13 17:54:28 EST 2003
i686 i686 i386 GNU/Linux
]0;address@hidden:~/address@hidden dbox]$ ilrun --version
ILRUN 0.6.5 - IL Program Runtime
Copyright (c) 2001 Southern Storm Software, Pty Ltd.
16th May 2004 Snapshot of pnet
------------------
Assembly from following C# source code is not producing recursive loop
when run with pnet. See output below :
// Recursively create new app domains
using System;
class App
{
public static int Main(string[] argv)
{
Console.WriteLine("Creating domain");
// create app domain
AppDomain child = AppDomain.CreateDomain("childapp");
Console.WriteLine("Executing assembly");
// execute a.out: recursive
int r = child.ExecuteAssembly("a.out", null, argv);
// dead code
// unload domain
AppDomain.Unload(child);
return r;
}
}
Output :
Creating domain
Executing assembly
[ should be a loop ]
I have not get time to go through bug database or list archive and
figure out the problem. But this might be useful to people here.
- [Pnet-developers] [NEWBIW} ilrun behaviour,
vijay patil <=