Example #1
0
        public void Kill()
        {
            if (_hJob != null)
            {
                NativeJob.TerminateJobObject(_hJob, 0);
            }

            _hJob = IntPtr.Zero;
        }
Example #2
0
 public void Kill()
 {
     CheckIfDisposed();
     NativeJob.TerminateJobObject(_hJob, 0);
 }
Example #3
0
 public void Kill()
 {
     NativeJob.TerminateJobObject(_hJob, 0);
 }