Example #1
0
 /// <summary>
 /// Some debugging events require title execution to be suspended.
 /// But there are some debugging events where thread suspension is an option.
 /// For these events, you can elect to have the debugging subsystem suspend title execution by calling this function.
 /// </summary>
 /// <param name="flags"></param>
 public void StopOn(StopOnFlags flags)
 {
     SendCommand("stopon {0}", flags.ToString().Replace(",", ""));
 }
Example #2
0
        /// <summary>
        /// Some debugging events require title execution to be suspended.
        /// But there are some debugging events where thread suspension is an option.
        /// For these events, you can elect to have the debugging subsystem suspend title execution by calling this function.
        /// </summary>
        /// <param name="flags"></param>
		/// <remarks>DmStopOn</remarks>
        public void StopOn(StopOnFlags flags, bool stop)
        {
            SendCommand("{0}stopon {0}", !stop ? "no" : "", flags.ToString().Replace(",", " "));
        }