コード例 #1
0
        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);
        }
コード例 #2
0
ファイル: ThreadDB.cs プロジェクト: baulig/debugger
        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);
        }
コード例 #3
0
 static extern IntPtr mono_debugger_thread_db_init(int pid, GlobalLookupFunc lookup_func, ReadMemoryFunc read_memory_func, WriteMemoryFunc write_memory_func);
コード例 #4
0
ファイル: ThreadDB.cs プロジェクト: baulig/debugger
 static extern IntPtr mono_debugger_thread_db_init(int pid, GlobalLookupFunc lookup_func, ReadMemoryFunc read_memory_func, WriteMemoryFunc write_memory_func);