Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 302927 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/cdt/dsf/mi/service/command/AbstractMIControl.java (-3 / +3 lines)
Lines 859-869 Link Here
859
        	} else if (recordType == MIParser.RecordType.OOBRecord) {
859
        	} else if (recordType == MIParser.RecordType.OOBRecord) {
860
				// Process OOBs
860
				// Process OOBs
861
        		final MIOOBRecord oob = fMiParser.parseMIOOBRecord(line);
861
        		final MIOOBRecord oob = fMiParser.parseMIOOBRecord(line);
862
       	        fAccumulatedOOBRecords.add(oob);
862
        		if (!fRxCommands.isEmpty()) { 
863
        		    fAccumulatedOOBRecords.add(oob);
864
        		}
863
       	        final MIOutput response = new MIOutput(oob);
865
       	        final MIOutput response = new MIOutput(oob);
864
866
865
866
				
867
            	/*
867
            	/*
868
            	 *   OOBS are events. So we pass them to any event listeners who want to see them. Again this must
868
            	 *   OOBS are events. So we pass them to any event listeners who want to see them. Again this must
869
            	 *   be done on the DSF thread for integrity.
869
            	 *   be done on the DSF thread for integrity.

Return to bug 302927