AppDomain address space...

  • Thread starter Thread starter Nadav
  • Start date Start date
N

Nadav

Hi,

I Wonder how does AppDomain memory address-sapce is
mapped ? is it the same addres space the containing
process have ???
Does changing a function body
using 'ICorProfilerInfo::SetILFunctionBody' effects all
AppDomain's in the same process ???

Thanks in advance,
Nadav Rubinstein,
Sofin l.t.d.
Look at a greate new tool I have developed at:
http://www.ddevel.com/home/main.asp
 
Hi!

It depends. For assemblies that are loaded to be common across all
AppDomains (neutral assemblies), changing the IL will have process wide
affect.

On the other hand, if assemblies are loaded in a specific AppDomain only,
only the relevant AppDomain shall be affected, not the others.
 
Back
Top