/[dotgnu-pnet]/pnet/engine/ilrun.c
ViewVC logotype

Diff of /pnet/engine/ilrun.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.50 by darkdust, Fri Apr 22 16:08:05 2005 UTC revision 1.51 by ktreichel, Thu May 5 10:16:16 2005 UTC
# Line 374  int main(int argc, char *argv[]) Line 374  int main(int argc, char *argv[])
374          }          }
375    
376          /* Initialize the engine and set the maximum heap size */          /* Initialize the engine and set the maximum heap size */
377    #ifdef IL_CONFIG_APPDOMAINS
378            if (ILExecInit(heapSize, stackSize) != IL_EXEC_INIT_OK)
379    #else
380          if (ILExecInit(heapSize) != IL_EXEC_INIT_OK)          if (ILExecInit(heapSize) != IL_EXEC_INIT_OK)
381    #endif
382          {          {
383                  #ifndef REDUCED_STDIO                  #ifndef REDUCED_STDIO
384                  fprintf(stderr, "%s: could not initialize engine\n", progname);                  fprintf(stderr, "%s: could not initialize engine\n", progname);
# Line 384  int main(int argc, char *argv[]) Line 388  int main(int argc, char *argv[])
388          }          }
389    
390          /* Create a process to load the program into */          /* Create a process to load the program into */
391    #ifdef IL_CONFIG_APPDOMAINS
392            process = ILExecProcessCreate(methodCachePageSize);
393    #else
394          process = ILExecProcessCreate(stackSize, methodCachePageSize);          process = ILExecProcessCreate(stackSize, methodCachePageSize);
395    #endif
396          if(!process)          if(!process)
397          {          {
398          #ifndef REDUCED_STDIO          #ifndef REDUCED_STDIO

Legend:
Removed from v.1.50  
changed lines
  Added in v.1.51

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26