polyphony 0.36 → 0.38

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +9 -0
  3. data/Gemfile +0 -11
  4. data/Gemfile.lock +1 -3
  5. data/Rakefile +4 -0
  6. data/TODO.md +12 -10
  7. data/docs/index.md +2 -1
  8. data/examples/core/xx-fork-cleanup.rb +22 -0
  9. data/ext/gyro/async.c +27 -13
  10. data/ext/gyro/child.c +29 -15
  11. data/ext/gyro/fiber.c +3 -1
  12. data/ext/gyro/gyro.c +0 -6
  13. data/ext/gyro/gyro.h +6 -0
  14. data/ext/gyro/io.c +24 -9
  15. data/ext/gyro/queue.c +21 -21
  16. data/ext/gyro/selector.c +23 -0
  17. data/ext/gyro/signal.c +24 -9
  18. data/ext/gyro/thread.c +12 -2
  19. data/ext/gyro/timer.c +33 -18
  20. data/lib/polyphony.rb +27 -36
  21. data/lib/polyphony/adapters/fs.rb +1 -4
  22. data/lib/polyphony/adapters/process.rb +29 -25
  23. data/lib/polyphony/adapters/trace.rb +129 -124
  24. data/lib/polyphony/core/channel.rb +36 -36
  25. data/lib/polyphony/core/exceptions.rb +29 -29
  26. data/lib/polyphony/core/global_api.rb +92 -91
  27. data/lib/polyphony/core/resource_pool.rb +84 -84
  28. data/lib/polyphony/core/sync.rb +17 -17
  29. data/lib/polyphony/core/thread_pool.rb +49 -37
  30. data/lib/polyphony/core/throttler.rb +25 -25
  31. data/lib/polyphony/extensions/core.rb +3 -3
  32. data/lib/polyphony/extensions/fiber.rb +269 -267
  33. data/lib/polyphony/extensions/openssl.rb +1 -1
  34. data/lib/polyphony/extensions/socket.rb +2 -1
  35. data/lib/polyphony/extensions/thread.rb +3 -3
  36. data/lib/polyphony/net.rb +71 -67
  37. data/lib/polyphony/version.rb +1 -1
  38. data/polyphony.gemspec +0 -3
  39. data/test/stress.rb +17 -12
  40. data/test/test_thread.rb +1 -0
  41. data/test/test_thread_pool.rb +2 -2
  42. data/test/test_throttler.rb +0 -1
  43. metadata +3 -16
@@ -1,34 +1,34 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- export_default :Throttler
4
-
5
- # Implements general-purpose throttling
6
- class Throttler
7
- def initialize(rate)
8
- @rate = rate_from_argument(rate)
9
- @min_dt = 1.0 / @rate
10
- end
3
+ module Polyphony
4
+ # Implements general-purpose throttling
5
+ class Throttler
6
+ def initialize(rate)
7
+ @rate = rate_from_argument(rate)
8
+ @min_dt = 1.0 / @rate
9
+ end
11
10
 
12
- def call(&block)
13
- @timer ||= Gyro::Timer.new(0, @min_dt)
14
- @timer.await
15
- block.call(self)
16
- end
17
- alias_method :process, :call
11
+ def call(&block)
12
+ @timer ||= Gyro::Timer.new(0, @min_dt)
13
+ @timer.await
14
+ block.call(self)
15
+ end
16
+ alias_method :process, :call
18
17
 
19
- def stop
20
- @timer&.stop
21
- end
18
+ def stop
19
+ @timer&.stop
20
+ end
22
21
 
23
- private
22
+ private
24
23
 
25
- def rate_from_argument(arg)
26
- return arg if arg.is_a?(Numeric)
24
+ def rate_from_argument(arg)
25
+ return arg if arg.is_a?(Numeric)
27
26
 
28
- if arg.is_a?(Hash)
29
- return 1.0 / arg[:interval] if arg[:interval]
30
- return arg[:rate] if arg[:rate]
27
+ if arg.is_a?(Hash)
28
+ return 1.0 / arg[:interval] if arg[:interval]
29
+ return arg[:rate] if arg[:rate]
30
+ end
31
+ raise "Invalid rate argument #{arg.inspect}"
31
32
  end
32
- raise "Invalid rate argument #{arg.inspect}"
33
33
  end
34
- end
34
+ end
@@ -4,7 +4,7 @@ require 'fiber'
4
4
  require 'timeout'
5
5
  require 'open3'
6
6
 
7
- Exceptions = import('../core/exceptions')
7
+ require_relative '../core/exceptions'
8
8
 
9
9
  # Exeption overrides
10
10
  class ::Exception
@@ -22,7 +22,7 @@ class ::Exception
22
22
  orig_initialize(*args)
23
23
  end
24
24
 
25
- alias_method_once :orig_backtrace, :backtrace
25
+ alias_method :orig_backtrace, :backtrace
26
26
  def backtrace
27
27
  unless @first_backtrace_call || EXIT_EXCEPTION_CLASSES.include?(self.class)
28
28
  @first_backtrace_call = true
@@ -118,7 +118,7 @@ end
118
118
  module ::Timeout
119
119
  def self.timeout(sec, klass = nil, message = nil, &block)
120
120
  cancel_after(sec, &block)
121
- rescue Exceptions::Cancel => e
121
+ rescue Polyphony::Cancel => e
122
122
  error = klass ? klass.new(message) : ::Timeout::Error.new
123
123
  error.set_backtrace(e.backtrace)
124
124
  raise error
@@ -2,340 +2,342 @@
2
2
 
3
3
  require 'fiber'
4
4
 
5
- Exceptions = import '../core/exceptions'
6
-
7
- # Fiber control API
8
- module FiberControl
9
- def await
10
- if @running == false
11
- return @result.is_a?(Exception) ? (Kernel.raise @result) : @result
5
+ require_relative '../core/exceptions'
6
+
7
+ module Polyphony
8
+ # Fiber control API
9
+ module FiberControl
10
+ def await
11
+ if @running == false
12
+ return @result.is_a?(Exception) ? (Kernel.raise @result) : @result
13
+ end
14
+
15
+ fiber = Fiber.current
16
+ @waiting_fibers ||= {}
17
+ @waiting_fibers[fiber] = true
18
+ suspend
19
+ ensure
20
+ @waiting_fibers&.delete(fiber)
12
21
  end
22
+ alias_method :join, :await
13
23
 
14
- fiber = Fiber.current
15
- @waiting_fibers ||= {}
16
- @waiting_fibers[fiber] = true
17
- suspend
18
- ensure
19
- @waiting_fibers&.delete(fiber)
20
- end
21
- alias_method :join, :await
24
+ def interrupt(value = nil)
25
+ return if @running == false
22
26
 
23
- def interrupt(value = nil)
24
- return if @running == false
27
+ schedule Polyphony::MoveOn.new(value)
28
+ end
29
+ alias_method :stop, :interrupt
25
30
 
26
- schedule Exceptions::MoveOn.new(value)
27
- end
28
- alias_method :stop, :interrupt
31
+ def restart(value = nil)
32
+ raise "Can''t restart main fiber" if @main
29
33
 
30
- def restart(value = nil)
31
- raise "Can''t restart main fiber" if @main
34
+ if @running
35
+ schedule Polyphony::Restart.new(value)
36
+ return self
37
+ end
32
38
 
33
- if @running
34
- schedule Exceptions::Restart.new(value)
35
- return self
39
+ parent.spin(@tag, @caller, &@block).tap do |f|
40
+ f.schedule(value) unless value.nil?
41
+ end
36
42
  end
43
+ alias_method :reset, :restart
37
44
 
38
- parent.spin(@tag, @caller, &@block).tap do |f|
39
- f.schedule(value) unless value.nil?
40
- end
41
- end
42
- alias_method :reset, :restart
43
-
44
- def cancel
45
- return if @running == false
46
-
47
- schedule Exceptions::Cancel.new
48
- end
45
+ def cancel
46
+ return if @running == false
49
47
 
50
- def terminate
51
- return if @running == false
48
+ schedule Polyphony::Cancel.new
49
+ end
52
50
 
53
- schedule Exceptions::Terminate.new
54
- end
51
+ def terminate
52
+ return if @running == false
55
53
 
56
- def raise(*args)
57
- error = error_from_raise_args(args)
58
- schedule(error)
59
- end
54
+ schedule Polyphony::Terminate.new
55
+ end
60
56
 
61
- def error_from_raise_args(args)
62
- case (arg = args.shift)
63
- when String then RuntimeError.new(arg)
64
- when Class then arg.new(args.shift)
65
- when Exception then arg
66
- else RuntimeError.new
57
+ def raise(*args)
58
+ error = error_from_raise_args(args)
59
+ schedule(error)
67
60
  end
68
- end
69
- end
70
61
 
71
- # Fiber supervision
72
- module FiberSupervision
73
- def supervise(opts = {})
74
- @counter = 0
75
- @on_child_done = proc do |fiber, result|
76
- self << fiber unless result.is_a?(Exception)
62
+ def error_from_raise_args(args)
63
+ case (arg = args.shift)
64
+ when String then RuntimeError.new(arg)
65
+ when Class then arg.new(args.shift)
66
+ when Exception then arg
67
+ else RuntimeError.new
68
+ end
77
69
  end
78
- loop { supervise_perform(opts) }
79
- ensure
80
- @on_child_done = nil
81
70
  end
82
71
 
83
- def supervise_perform(opts)
84
- fiber = receive
85
- restart_fiber(fiber, opts) if fiber
86
- rescue Exceptions::Restart
87
- restart_all_children
88
- rescue Exception => e
89
- Kernel.raise e if e.source_fiber.nil? || e.source_fiber == self
72
+ # Fiber supervision
73
+ module FiberSupervision
74
+ def supervise(opts = {})
75
+ @counter = 0
76
+ @on_child_done = proc do |fiber, result|
77
+ self << fiber unless result.is_a?(Exception)
78
+ end
79
+ loop { supervise_perform(opts) }
80
+ ensure
81
+ @on_child_done = nil
82
+ end
90
83
 
91
- restart_fiber(e.source_fiber, opts)
92
- end
84
+ def supervise_perform(opts)
85
+ fiber = receive
86
+ restart_fiber(fiber, opts) if fiber
87
+ rescue Polyphony::Restart
88
+ restart_all_children
89
+ rescue Exception => e
90
+ Kernel.raise e if e.source_fiber.nil? || e.source_fiber == self
93
91
 
94
- def restart_fiber(fiber, opts)
95
- opts[:watcher]&.send [:restart, fiber]
96
- case opts[:restart]
97
- when true
98
- fiber.restart
99
- when :one_for_all
100
- @children.keys.each(&:restart)
92
+ restart_fiber(e.source_fiber, opts)
101
93
  end
102
- end
103
- end
104
94
 
105
- # Class methods for controlling fibers (namely await and select)
106
- module FiberControlClassMethods
107
- def await(*fibers)
108
- return [] if fibers.empty?
109
-
110
- state = setup_await_select_state(fibers)
111
- await_setup_monitoring(fibers, state)
112
- suspend
113
- fibers.map(&:result)
114
- ensure
115
- await_select_cleanup(state)
95
+ def restart_fiber(fiber, opts)
96
+ opts[:watcher]&.send [:restart, fiber]
97
+ case opts[:restart]
98
+ when true
99
+ fiber.restart
100
+ when :one_for_all
101
+ @children.keys.each(&:restart)
102
+ end
103
+ end
116
104
  end
117
- alias_method :join, :await
118
105
 
119
- def setup_await_select_state(fibers)
120
- {
121
- awaiter: Fiber.current,
122
- pending: fibers.each_with_object({}) { |f, h| h[f] = true }
123
- }
124
- end
106
+ # Class methods for controlling fibers (namely await and select)
107
+ module FiberControlClassMethods
108
+ def await(*fibers)
109
+ return [] if fibers.empty?
125
110
 
126
- def await_setup_monitoring(fibers, state)
127
- fibers.each do |f|
128
- f.when_done { |r| await_fiber_done(f, r, state) }
111
+ state = setup_await_select_state(fibers)
112
+ await_setup_monitoring(fibers, state)
113
+ suspend
114
+ fibers.map(&:result)
115
+ ensure
116
+ await_select_cleanup(state)
129
117
  end
130
- end
118
+ alias_method :join, :await
131
119
 
132
- def await_fiber_done(fiber, result, state)
133
- state[:pending].delete(fiber)
120
+ def setup_await_select_state(fibers)
121
+ {
122
+ awaiter: Fiber.current,
123
+ pending: fibers.each_with_object({}) { |f, h| h[f] = true }
124
+ }
125
+ end
134
126
 
135
- if state[:cleanup]
136
- state[:awaiter].schedule if state[:pending].empty?
137
- elsif !state[:done] && (result.is_a?(Exception) || state[:pending].empty?)
138
- state[:awaiter].schedule(result)
139
- state[:done] = true
127
+ def await_setup_monitoring(fibers, state)
128
+ fibers.each do |f|
129
+ f.when_done { |r| await_fiber_done(f, r, state) }
130
+ end
140
131
  end
141
- end
142
132
 
143
- def await_select_cleanup(state)
144
- return if state[:pending].empty?
133
+ def await_fiber_done(fiber, result, state)
134
+ state[:pending].delete(fiber)
145
135
 
146
- terminate = Exceptions::Terminate.new
147
- state[:cleanup] = true
148
- state[:pending].each_key { |f| f.schedule(terminate) }
149
- suspend
150
- end
136
+ if state[:cleanup]
137
+ state[:awaiter].schedule if state[:pending].empty?
138
+ elsif !state[:done] && (result.is_a?(Exception) || state[:pending].empty?)
139
+ state[:awaiter].schedule(result)
140
+ state[:done] = true
141
+ end
142
+ end
151
143
 
152
- def select(*fibers)
153
- state = setup_await_select_state(fibers)
154
- select_setup_monitoring(fibers, state)
155
- suspend
156
- ensure
157
- await_select_cleanup(state)
158
- end
144
+ def await_select_cleanup(state)
145
+ return if state[:pending].empty?
159
146
 
160
- def select_setup_monitoring(fibers, state)
161
- fibers.each do |f|
162
- f.when_done { |r| select_fiber_done(f, r, state) }
147
+ terminate = Polyphony::Terminate.new
148
+ state[:cleanup] = true
149
+ state[:pending].each_key { |f| f.schedule(terminate) }
150
+ suspend
163
151
  end
164
- end
165
152
 
166
- def select_fiber_done(fiber, result, state)
167
- state[:pending].delete(fiber)
168
- if state[:cleanup]
169
- # in cleanup mode the selector is resumed if no more pending fibers
170
- state[:awaiter].schedule if state[:pending].empty?
171
- elsif !state[:selected]
172
- # first fiber to complete, we schedule the result
173
- state[:awaiter].schedule([fiber, result])
174
- state[:selected] = true
153
+ def select(*fibers)
154
+ state = setup_await_select_state(fibers)
155
+ select_setup_monitoring(fibers, state)
156
+ suspend
157
+ ensure
158
+ await_select_cleanup(state)
175
159
  end
176
- end
177
- end
178
160
 
179
- # Messaging functionality
180
- module FiberMessaging
181
- def <<(value)
182
- @mailbox << value
183
- end
184
- alias_method :send, :<<
161
+ def select_setup_monitoring(fibers, state)
162
+ fibers.each do |f|
163
+ f.when_done { |r| select_fiber_done(f, r, state) }
164
+ end
165
+ end
185
166
 
186
- def receive
187
- @mailbox.shift
167
+ def select_fiber_done(fiber, result, state)
168
+ state[:pending].delete(fiber)
169
+ if state[:cleanup]
170
+ # in cleanup mode the selector is resumed if no more pending fibers
171
+ state[:awaiter].schedule if state[:pending].empty?
172
+ elsif !state[:selected]
173
+ # first fiber to complete, we schedule the result
174
+ state[:awaiter].schedule([fiber, result])
175
+ state[:selected] = true
176
+ end
177
+ end
188
178
  end
189
179
 
190
- def receive_pending
191
- @mailbox.shift_each
192
- end
193
- end
180
+ # Messaging functionality
181
+ module FiberMessaging
182
+ def <<(value)
183
+ @mailbox << value
184
+ end
185
+ alias_method :send, :<<
194
186
 
195
- # Methods for controlling child fibers
196
- module ChildFiberControl
197
- def children
198
- (@children ||= {}).keys
199
- end
187
+ def receive
188
+ @mailbox.shift
189
+ end
200
190
 
201
- def spin(tag = nil, orig_caller = Kernel.caller, &block)
202
- f = Fiber.new { |v| f.run(v) }
203
- f.prepare(tag, block, orig_caller, self)
204
- (@children ||= {})[f] = true
205
- f
191
+ def receive_pending
192
+ @mailbox.shift_each
193
+ end
206
194
  end
207
195
 
208
- def child_done(child_fiber, result)
209
- @children.delete(child_fiber)
210
- @on_child_done&.(child_fiber, result)
211
- end
196
+ # Methods for controlling child fibers
197
+ module ChildFiberControl
198
+ def children
199
+ (@children ||= {}).keys
200
+ end
212
201
 
213
- def terminate_all_children
214
- return unless @children
202
+ def spin(tag = nil, orig_caller = Kernel.caller, &block)
203
+ f = Fiber.new { |v| f.run(v) }
204
+ f.prepare(tag, block, orig_caller, self)
205
+ (@children ||= {})[f] = true
206
+ f
207
+ end
215
208
 
216
- e = Exceptions::Terminate.new
217
- @children.each_key { |c| c.raise e }
218
- end
209
+ def child_done(child_fiber, result)
210
+ @children.delete(child_fiber)
211
+ @on_child_done&.(child_fiber, result)
212
+ end
219
213
 
220
- def await_all_children
221
- return unless @children && !@children.empty?
214
+ def terminate_all_children
215
+ return unless @children
222
216
 
223
- Fiber.await(*@children.keys)
224
- end
217
+ e = Polyphony::Terminate.new
218
+ @children.each_key { |c| c.raise e }
219
+ end
225
220
 
226
- def shutdown_all_children
227
- terminate_all_children
228
- await_all_children
229
- end
230
- end
221
+ def await_all_children
222
+ return unless @children && !@children.empty?
231
223
 
232
- # Fiber life cycle methods
233
- module FiberLifeCycle
234
- def prepare(tag, block, caller, parent)
235
- @thread = Thread.current
236
- @tag = tag
237
- @parent = parent
238
- @caller = caller
239
- @block = block
240
- @mailbox = Gyro::Queue.new
241
- __fiber_trace__(:fiber_create, self)
242
- schedule
243
- end
224
+ Fiber.await(*@children.keys)
225
+ end
244
226
 
245
- def run(first_value)
246
- setup first_value
247
- result = @block.(first_value)
248
- finalize result
249
- rescue Exceptions::Restart => e
250
- restart_self(e.value)
251
- rescue Exceptions::MoveOn, Exceptions::Terminate => e
252
- finalize e.value
253
- rescue Exception => e
254
- e.source_fiber = self
255
- finalize e, true
227
+ def shutdown_all_children
228
+ terminate_all_children
229
+ await_all_children
230
+ end
256
231
  end
257
232
 
258
- def setup(first_value)
259
- Kernel.raise first_value if first_value.is_a?(Exception)
233
+ # Fiber life cycle methods
234
+ module FiberLifeCycle
235
+ def prepare(tag, block, caller, parent)
236
+ @thread = Thread.current
237
+ @tag = tag
238
+ @parent = parent
239
+ @caller = caller
240
+ @block = block
241
+ @mailbox = Gyro::Queue.new
242
+ __fiber_trace__(:fiber_create, self)
243
+ schedule
244
+ end
260
245
 
261
- @running = true
262
- end
246
+ def run(first_value)
247
+ setup first_value
248
+ result = @block.(first_value)
249
+ finalize result
250
+ rescue Polyphony::Restart => e
251
+ restart_self(e.value)
252
+ rescue Polyphony::MoveOn, Polyphony::Terminate => e
253
+ finalize e.value
254
+ rescue Exception => e
255
+ e.source_fiber = self
256
+ finalize e, true
257
+ end
263
258
 
264
- # Performs setup for a "raw" Fiber created using Fiber.new. Note that this
265
- # fiber is an orphan fiber (has no parent), since we cannot control how the
266
- # fiber terminates after it has already been created. Calling #setup_raw
267
- # allows the fiber to be scheduled and to receive messages.
268
- def setup_raw
269
- @thread = Thread.current
270
- @mailbox = Gyro::Queue.new
271
- end
259
+ def setup(first_value)
260
+ Kernel.raise first_value if first_value.is_a?(Exception)
272
261
 
273
- def setup_main_fiber
274
- @main = true
275
- @tag = :main
276
- @thread = Thread.current
277
- @running = true
278
- @children&.clear
279
- @mailbox = Gyro::Queue.new
280
- end
262
+ @running = true
263
+ end
281
264
 
282
- def restart_self(first_value)
283
- @mailbox = Gyro::Queue.new
284
- @when_done_procs = nil
285
- @waiting_fibers = nil
286
- run(first_value)
287
- end
265
+ # Performs setup for a "raw" Fiber created using Fiber.new. Note that this
266
+ # fiber is an orphan fiber (has no parent), since we cannot control how the
267
+ # fiber terminates after it has already been created. Calling #setup_raw
268
+ # allows the fiber to be scheduled and to receive messages.
269
+ def setup_raw
270
+ @thread = Thread.current
271
+ @mailbox = Gyro::Queue.new
272
+ end
288
273
 
289
- def finalize(result, uncaught_exception = false)
290
- result, uncaught_exception = finalize_children(result, uncaught_exception)
291
- __fiber_trace__(:fiber_terminate, self, result)
292
- @result = result
293
- @running = false
294
- inform_dependants(result, uncaught_exception)
295
- ensure
296
- Thread.current.switch_fiber
297
- end
274
+ def setup_main_fiber
275
+ @main = true
276
+ @tag = :main
277
+ @thread = Thread.current
278
+ @running = true
279
+ @children&.clear
280
+ @mailbox = Gyro::Queue.new
281
+ end
298
282
 
299
- # Shuts down all children of the current fiber. If any exception occurs while
300
- # the children are shut down, it is returned along with the uncaught_exception
301
- # flag set. Otherwise, it returns the given arguments.
302
- def finalize_children(result, uncaught_exception)
303
- begin
304
- shutdown_all_children
305
- rescue Exception => e
306
- result = e
307
- uncaught_exception = true
283
+ def restart_self(first_value)
284
+ @mailbox = Gyro::Queue.new
285
+ @when_done_procs = nil
286
+ @waiting_fibers = nil
287
+ run(first_value)
308
288
  end
309
- [result, uncaught_exception]
310
- end
311
289
 
312
- def inform_dependants(result, uncaught_exception)
313
- @parent&.child_done(self, result)
314
- @when_done_procs&.each { |p| p.(result) }
315
- @waiting_fibers&.each_key do |f|
316
- f.schedule(result)
290
+ def finalize(result, uncaught_exception = false)
291
+ result, uncaught_exception = finalize_children(result, uncaught_exception)
292
+ __fiber_trace__(:fiber_terminate, self, result)
293
+ @result = result
294
+ @running = false
295
+ inform_dependants(result, uncaught_exception)
296
+ ensure
297
+ Thread.current.switch_fiber
317
298
  end
318
- return unless uncaught_exception && !@waiting_fibers
319
299
 
320
- # propagate unaught exception to parent
321
- @parent&.schedule(result)
322
- end
300
+ # Shuts down all children of the current fiber. If any exception occurs while
301
+ # the children are shut down, it is returned along with the uncaught_exception
302
+ # flag set. Otherwise, it returns the given arguments.
303
+ def finalize_children(result, uncaught_exception)
304
+ begin
305
+ shutdown_all_children
306
+ rescue Exception => e
307
+ result = e
308
+ uncaught_exception = true
309
+ end
310
+ [result, uncaught_exception]
311
+ end
323
312
 
324
- def when_done(&block)
325
- @when_done_procs ||= []
326
- @when_done_procs << block
313
+ def inform_dependants(result, uncaught_exception)
314
+ @parent&.child_done(self, result)
315
+ @when_done_procs&.each { |p| p.(result) }
316
+ @waiting_fibers&.each_key do |f|
317
+ f.schedule(result)
318
+ end
319
+ return unless uncaught_exception && !@waiting_fibers
320
+
321
+ # propagate unaught exception to parent
322
+ @parent&.schedule(result)
323
+ end
324
+
325
+ def when_done(&block)
326
+ @when_done_procs ||= []
327
+ @when_done_procs << block
328
+ end
327
329
  end
328
330
  end
329
331
 
330
332
  # Fiber extensions
331
333
  class ::Fiber
332
- prepend FiberControl
333
- include FiberSupervision
334
- include FiberMessaging
335
- include ChildFiberControl
336
- include FiberLifeCycle
334
+ prepend Polyphony::FiberControl
335
+ include Polyphony::FiberSupervision
336
+ include Polyphony::FiberMessaging
337
+ include Polyphony::ChildFiberControl
338
+ include Polyphony::FiberLifeCycle
337
339
 
338
- extend FiberControlClassMethods
340
+ extend Polyphony::FiberControlClassMethods
339
341
 
340
342
  attr_accessor :tag, :thread, :parent
341
343
  attr_reader :result
@@ -377,6 +379,6 @@ orig_pid = Process.pid
377
379
  at_exit do
378
380
  next unless orig_pid == Process.pid
379
381
 
380
- Fiber.current.terminate_all_children
381
- Fiber.current.await_all_children
382
+ Polyphony.terminate_threads
383
+ Fiber.current.shutdown_all_children
382
384
  end