andromedarabbit / earlgrey

High performance online gaming server engine.
2 stars 1 forks source link

ThreadLocal 에서 예외 발생 #73

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
{{{
T *Get(void)
{
  EARLGREY_ASSERT(TLS_OUT_OF_INDEXES != _threadLocalIndex);  
}}}

응용프로그램 초기화할 때 이런 경우를 오늘 딱 한번 처음 
겪었습니다. Executor
인스턴스(아마 싱글톤이었던 듯)를 생성할 때 위의 
ASSERT에서 걸렸습니다.

Original issue reported on code.google.com by kaistizen on 7 Apr 2010 at 3:13

GoogleCodeExporter commented 9 years ago
저도 한 번 걸렸었는데, 이상하게 ASSERT 조건을 만족하는데 
뜨더라구요..

Original comment by gwkan...@gmail.com on 23 Apr 2010 at 5:05