Mono.Debugger.Backend.ThreadDB.ThreadDB C# (CSharp) Method

ThreadDB() protected method

protected ThreadDB ( Process process ) : System
process Process
return System
        protected ThreadDB(Process process)
        {
            this.process = process;

            mutex = new DebuggerMutex ("thread_db_mutex");

            global_lookup_func = new GlobalLookupFunc (global_lookup);
            read_memory_func = new ReadMemoryFunc (read_memory);
            write_memory_func = new WriteMemoryFunc (write_memory);
        }