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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top