Re: [DOTNET-ROTOR] adding a new alloc function

2004-11-11 Thread Jan Kotas
LP_YOURNEWHELPER; } -Jan -Original Message- From: Discussion of the Rotor Shared Source CLI implementation [mailto:[EMAIL PROTECTED] On Behalf Of Archana Sent: Thursday, November 11, 2004 4:50 AM To: [EMAIL PROTECTED] Subject: Re: [DOTNET-ROTOR] adding a new alloc function Hi, could some

Re: [DOTNET-ROTOR] adding a new alloc function

2004-11-11 Thread Archana
Hi, could someone please explain how to make the JIT recognize the new custom attribute as mentioned below? Thanks archana On Tue, 24 Aug 2004, Jan Kotas wrote: > - If all instances of certain classes are supposed to be allocated by > your allocator, you can use custom attribute to mark them as

Re: [DOTNET-ROTOR] adding a new alloc function

2004-10-06 Thread Archana
Hi, wrt reply below, Assuming that one takes the Attribute route. Lets say X is such a class. If X has some built-in classes as members like for example an Arraylist as its member say f. Going by the same vein, f can be marked with such an attribute. so that would cover up for f=new ArrayList(); B

Re: [DOTNET-ROTOR] adding a new alloc function

2004-08-24 Thread Jan Kotas
rom: Discussion of the Rotor Shared Source CLI implementation > [mailto:[EMAIL PROTECTED] On Behalf Of Archana > Sent: Tuesday, August 24, 2004 4:26 AM > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET-ROTOR] adding a new alloc function > > Hi, > Thanks for such a prompt response

Re: [DOTNET-ROTOR] adding a new alloc function

2004-08-24 Thread Archana
otor Shared Source CLI implementation > [mailto:[EMAIL PROTECTED] On Behalf Of Archana > Sent: Tuesday, August 24, 2004 4:26 AM > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET-ROTOR] adding a new alloc function > > Hi, > Thanks for such a prompt response. the solution sounds

Re: [DOTNET-ROTOR] adding a new alloc function

2004-08-24 Thread Archana
Hi, > > - If all instances of certain classes are supposed to be allocated by > your allocator, you can use custom attribute to mark them as such. Or > you can use custom attribute to say that all instances of given class in > an assembly should be allocated using your allocator. The JIT would > c

Re: [DOTNET-ROTOR] adding a new alloc function

2004-08-24 Thread Jan Kotas
24, 2004 4:26 AM To: [EMAIL PROTECTED] Subject: Re: [DOTNET-ROTOR] adding a new alloc function Hi, Thanks for such a prompt response. the solution sounds kind of complicated. well,actually i just want a function that can allocate memory, like new that i can call in a C# program. Isnt there any other

Re: [DOTNET-ROTOR] adding a new alloc function

2004-08-24 Thread Michael Giagnocavo
on does exactly. > > -Jan > > -Original Message- > From: Discussion of the Rotor Shared Source CLI implementation > [mailto:[EMAIL PROTECTED] On Behalf Of Archana > Sent: Monday, August 23, 2004 9:49 PM > To: [EMAIL PROTECTED] > Subject: [DOTNET-ROTOR] adding a new alloc

Re: [DOTNET-ROTOR] adding a new alloc function

2004-08-24 Thread Archana
truction does exactly. > > -Jan > > -Original Message- > From: Discussion of the Rotor Shared Source CLI implementation > [mailto:[EMAIL PROTECTED] On Behalf Of Archana > Sent: Monday, August 23, 2004 9:49 PM > To: [EMAIL PROTECTED] > Subject: [DOTNET-ROTOR] adding a n

Re: [DOTNET-ROTOR] adding a new alloc function

2004-08-23 Thread Jan Kotas
ubject: [DOTNET-ROTOR] adding a new alloc function Hi, incase one needs to add a new alloc function apart from getting memory using the operator new, what are the changes involved in doing so. what all files in Rotor need to change etc.. eg: x=new object(), x = new1 object();

[DOTNET-ROTOR] adding a new alloc function

2004-08-23 Thread Archana
Hi, incase one needs to add a new alloc function apart from getting memory using the operator new, what are the changes involved in doing so. what all files in Rotor need to change etc.. eg: x=new object(), x = new1 object(); Thanks, archana === This list is hoste