2012-01-15 14:08:17 +00:00
|
|
|
require 'mach/port'
|
|
|
|
require 'mach/semaphore'
|
|
|
|
require 'mach/task'
|
2012-01-30 04:57:13 +00:00
|
|
|
require 'mach/functions'
|
2012-01-15 14:08:17 +00:00
|
|
|
|
2012-01-15 14:02:53 +00:00
|
|
|
module Mach
|
2012-01-30 04:57:13 +00:00
|
|
|
# @return [Port] the original bootstrap port; different from that
|
|
|
|
# affected by {get,set}_special_port
|
|
|
|
def self.bootstrap_port
|
|
|
|
@bootstrap_port ||= Mach::Port.new(:port => Mach::Functions::bootstrap_port)
|
|
|
|
end
|
2012-01-15 14:02:53 +00:00
|
|
|
end
|