Skip to content

Commit

Permalink
Readd collectors initialisation
Browse files Browse the repository at this point in the history
  • Loading branch information
markuspf committed Feb 29, 2016
1 parent d805127 commit 7465104
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions src/objscoll.c
Original file line number Diff line number Diff line change
Expand Up @@ -822,15 +822,13 @@ static Int InitKernel (
/* init filters and functions */
InitHdlrFuncsFromTable( GVarFuncs );

/* TL:
InitGlobalBag( &SC_NW_STACK, "SC_NW_STACK" );
InitGlobalBag( &SC_LW_STACK, "SC_LW_STACK" );
InitGlobalBag( &SC_PW_STACK, "SC_PW_STACK" );
InitGlobalBag( &SC_EW_STACK, "SC_EW_STACK" );
InitGlobalBag( &SC_GE_STACK, "SC_GE_STACK" );
InitGlobalBag( &SC_CW_VECTOR, "SC_CW_VECTOR" );
InitGlobalBag( &SC_CW2_VECTOR, "SC_CW2_VECTOR" );
*/
InitGlobalBag( &TLS(SC_NW_STACK), "SC_NW_STACK" );
InitGlobalBag( &TLS(SC_LW_STACK), "SC_LW_STACK" );
InitGlobalBag( &TLS(SC_PW_STACK), "SC_PW_STACK" );
InitGlobalBag( &TLS(SC_EW_STACK), "SC_EW_STACK" );
InitGlobalBag( &TLS(SC_GE_STACK), "SC_GE_STACK" );
InitGlobalBag( &TLS(SC_CW_VECTOR), "SC_CW_VECTOR" );
InitGlobalBag( &TLS(SC_CW2_VECTOR), "SC_CW2_VECTOR" );

/* return success */
return 0;
Expand Down

0 comments on commit 7465104

Please sign in to comment.