bigloo.pthread.bglpthread.current_thread C# (CSharp) 메소드

current_thread() 공개 정적인 메소드

public static current_thread ( ) : Object
리턴 Object
        public static Object current_thread()
        {
            Object o = Thread.GetData( Thread.GetNamedDataSlot( "bglcthread" ) );

             if( o is bglpthread ) {
            return ((bglpthread)o).thread;
             } else {
            return bigloo.foreign.BFALSE;
             }
        }