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
            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);
            }