Inheritance: Process
コード例 #1
0
        public Process OpenCoreFile(ProcessStart start, out Thread[] threads)
        {
            CoreFile core = CoreFile.OpenCoreFile(this, start);

            threads = core.GetThreads();
            return(core);
        }
コード例 #2
0
            public CoreFileThread(CoreFile core, int pid)
                : base(core.ThreadManager, core)
            {
                this.pid      = pid;
                this.CoreFile = core;
                this.Thread   = new Thread(this, ID);

                this.Registers = read_registers();

                this.TargetAccess = new CoreFileTargetAccess(this);
            }
コード例 #3
0
ファイル: CoreFile.cs プロジェクト: baulig/debugger
            public CoreFileThread(CoreFile core, int pid)
                : base(core.ThreadManager, core)
            {
                this.pid = pid;
                this.CoreFile = core;
                this.Thread = new Thread (this, ID);

                this.Registers = read_registers ();

                this.TargetAccess = new CoreFileTargetAccess (this);
            }