File: nrt_initialize.c

    1   /*
    2    * nrt_initialize.c
    3    *
    4    * Code generation for function 'nrt_initialize'
    5    *
    6    */
    7   
    8   /* Include files */
    9   #include "rt_nonfinite.h"
   10   #include "nrt.h"
   11   #include "nrt_initialize.h"
   12   #include "nrt_data.h"
   13   
   14   /* Function Definitions */
   15   void nrt_initialize(emlrtContext *aContext)
   16   {
   17     emlrtStack st = { NULL, NULL, NULL };
   18   
   19     emlrtBreakCheckR2012bFlagVar = emlrtGetBreakCheckFlagAddressR2012b();
   20     emlrtCreateRootTLS(&emlrtRootTLSGlobal, aContext, NULL, 1);
   21     st.tls = emlrtRootTLSGlobal;
   22     emlrtClearAllocCountR2012b(&st, false, 0U, 0);
   23     emlrtEnterRtStackR2012b(&st);
   24     emlrtFirstTimeR2012b(emlrtRootTLSGlobal);
   25   }
   26   
   27   /* End of code generation (nrt_initialize.c) */
   28