Sha256: a6d1d59f093ef51fa4cf066ba9a7e4089843b40e7b545a16ed09b582f686e4fe

Contents?: true

Size: 743 Bytes

Versions: 5

Compression:

Stored size: 743 Bytes

Contents

# -*- coding: utf-8 -*-
# Copyright (C) 2011, 2012 Rocky Bernstein <rockyb@rubyforge.net>

# Communication status codes
module Trepanning
  # Most of these go from debugged process to front-end
  # client interface. COMMAND goes the other way.
  module RemoteCommunication
    unless defined?(PRINT)
      PRINT         = '.'   # Server wants to print
      COMMAND       = 'C'   # read a command
      CONFIRM_TRUE  = 'Y'   # Confirm read, default true
      CONFIRM_FALSE = 'N'   # Confirm read, default false
      CONFIRM_REPLY = '?'
      QUIT          = 'q'   # End debug session
      PROMPT        = 'p'   # Write prompt
      SYNC          = 's'   # Resynchronize communication
      RESTART       = 'r'   # Restart
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
trepanning-2.15.35 interface/comcodes.rb
trepanning-1.93.35 interface/comcodes.rb
trepanning-2.15.33 interface/comcodes.rb
trepanning-1.93.32 interface/comcodes.rb
trepanning-0.1.6 interface/comcodes.rb