celluloid 0.0.3 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,16 @@
1
+ require 'thread'
2
+
3
+ begin
4
+ require 'fiber'
5
+ rescue LoadError => ex
6
+ # If we're on Rubinius, we can still work in 1.8 mode
7
+ if defined? Rubinius
8
+ Fiber = Rubinius::Fiber
9
+ else
10
+ raise ex
11
+ end
12
+ end
13
+
1
14
  module Celluloid
2
15
  # Raised when trying to do Actor-like things outside Actor-space
3
16
  class NotActorError < StandardError; end
@@ -15,6 +28,19 @@ module Celluloid
15
28
  end
16
29
  end
17
30
 
31
+ # Are we currently inside of an actor?
32
+ def self.actor?
33
+ !!Thread.current[:actor]
34
+ end
35
+
36
+ # Obtain the currently running actor (if one exists)
37
+ def self.current_actor
38
+ actor = Thread.current[:actor_proxy]
39
+ raise NotActorError, "not in actor scope" unless actor
40
+
41
+ actor
42
+ end
43
+
18
44
  # Actors are Celluloid's concurrency primitive. They're implemented as
19
45
  # normal Ruby objects wrapped in threads which communicate with asynchronous
20
46
  # messages. The implementation is inspired by Erlang's gen_server
@@ -33,6 +59,7 @@ module Celluloid
33
59
  proxy.send(:initialize, *args, &block)
34
60
  proxy
35
61
  end
62
+ alias_method :new, :spawn
36
63
 
37
64
  # Create a new actor and link to the current one
38
65
  def spawn_link(*args, &block)
@@ -47,6 +74,7 @@ module Celluloid
47
74
 
48
75
  proxy
49
76
  end
77
+ alias_method :new_link, :spawn_link
50
78
 
51
79
  # Create a supervisor which ensures an instance of an actor will restart
52
80
  # an actor if it fails
@@ -63,16 +91,11 @@ module Celluloid
63
91
  # Trap errors from actors we're linked to when they exit
64
92
  def trap_exit(callback)
65
93
  @exit_handler = callback.to_sym
66
- end
94
+ end
67
95
  end
68
96
 
69
97
  # Instance methods added to the public API
70
98
  module InstanceMethods
71
- # Is this object functioning as an actor?
72
- def actor?
73
- !!@mailbox
74
- end
75
-
76
99
  # Is this actor alive?
77
100
  def alive?
78
101
  @thread.alive?
@@ -83,8 +106,12 @@ module Celluloid
83
106
  raise AbortError.new(cause)
84
107
  end
85
108
 
109
+ # Terminate this actor
110
+ def terminate
111
+ @running = false
112
+ end
113
+
86
114
  def inspect
87
- return super unless actor?
88
115
  str = "#<Celluloid::Actor(#{self.class}:0x#{self.object_id.to_s(16)})"
89
116
 
90
117
  ivars = []
@@ -105,67 +132,106 @@ module Celluloid
105
132
  @mailbox = Mailbox.new
106
133
  @links = Links.new
107
134
  @proxy = ActorProxy.new(self, @mailbox)
135
+ @running = true
108
136
 
109
137
  @thread = Thread.new do
110
- Thread.current[:actor] = self
111
- Thread.current[:mailbox] = @mailbox
138
+ __init_thread
112
139
  __run_actor
113
140
  end
114
141
 
115
142
  @proxy
116
143
  end
144
+
145
+ # Configure thread locals for the running thread
146
+ def __init_thread
147
+ Thread.current[:actor] = self
148
+ Thread.current[:actor_proxy] = @proxy
149
+ Thread.current[:mailbox] = @mailbox
150
+ end
117
151
 
118
152
  # Run the actor
119
153
  def __run_actor
120
154
  __process_messages
155
+ __cleanup ExitEvent.new(@proxy)
121
156
  rescue Exception => ex
122
157
  __handle_crash(ex)
158
+ ensure
159
+ Thread.current.exit
123
160
  end
124
161
 
125
162
  # Process incoming messages
126
163
  def __process_messages
127
- while true # instead of loop, for speed!
164
+ pending_calls = {}
165
+
166
+ while @running
128
167
  begin
129
- call = @mailbox.receive
130
- rescue ExitEvent => event
131
- __handle_exit(event)
168
+ message = @mailbox.receive
169
+ rescue ExitEvent => exit_event
170
+ fiber = Fiber.new do
171
+ __init_thread
172
+ __handle_exit_event exit_event
173
+ end
174
+
175
+ call = fiber.resume
176
+ pending_calls[call] = fiber if fiber.alive?
177
+
132
178
  retry
133
179
  end
180
+
181
+ case message
182
+ when SyncCall
183
+ fiber = Fiber.new do
184
+ __init_thread
185
+ message.dispatch(self)
186
+ end
187
+
188
+ call = fiber.resume
189
+ pending_calls[call] = fiber if fiber.alive?
190
+ when Response
191
+ fiber = pending_calls.delete(message.call)
134
192
 
135
- call.dispatch(self)
193
+ if fiber
194
+ call = fiber.resume message
195
+ pending_calls[call] = fiber if fiber.alive?
196
+ end
197
+ when AsyncCall
198
+ message.dispatch(self)
199
+ end # unexpected messages are ignored
136
200
  end
137
201
  end
138
-
202
+
139
203
  # Handle exit events received by this actor
140
- def __handle_exit(exit_event)
204
+ def __handle_exit_event(exit_event)
141
205
  exit_handler = self.class.exit_handler
142
- raise exit_event.reason unless exit_handler
206
+ if exit_handler
207
+ return send(exit_handler, exit_event.actor, exit_event.reason)
208
+ end
143
209
 
144
- send exit_handler, exit_event.actor, exit_event.reason
210
+ # Reraise exceptions from linked actors
211
+ # If no reason is given, actor terminated cleanly
212
+ raise exit_event.reason if exit_event.reason
145
213
  end
146
214
 
147
215
  # Handle any exceptions that occur within a running actor
148
216
  def __handle_crash(exception)
149
217
  __log_error(exception)
150
- @mailbox.cleanup
151
-
152
- # Report the exit event to all actors we're linked to
153
- exit_event = ExitEvent.new(@proxy, exception)
154
-
155
- # Propagate the error to all linked actors
156
- @links.each do |actor|
157
- actor.mailbox.system_event exit_event
158
- end
218
+ __cleanup ExitEvent.new(@proxy, exception)
159
219
  rescue Exception => handler_exception
160
- __log_error(handler_exception, "/!\\ EXCEPTION IN ERROR HANDLER /!\\")
161
- ensure
162
- Thread.current.exit
220
+ __log_error(handler_exception, "ERROR HANDLER CRASHED!")
221
+ end
222
+
223
+ # Handle cleaning up this actor after it exits
224
+ def __cleanup(exit_event)
225
+ @mailbox.shutdown
226
+ @links.send_event exit_event
163
227
  end
164
228
 
165
229
  # Log errors when an actor crashes
166
230
  # FIXME: This should probably thunk to a real logger
167
- def __log_error(ex, prefix = "!!! CRASH")
168
- puts "#{prefix} #{self.class}: #{ex.class}: #{ex.to_s}\n#{ex.backtrace.join("\n")}"
231
+ def __log_error(ex, message = "#{self.class} crashed!")
232
+ message << "\n#{ex.class}: #{ex.to_s}\n"
233
+ message << ex.backtrace.join("\n")
234
+ Celluloid.logger.error message if Celluloid.logger
169
235
  end
170
236
  end
171
237
 
@@ -0,0 +1,4637 @@
1
+ !RBIX
2
+ 3578385345186687227
3
+ 18
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 138
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 26
23
+ 93
24
+ 0
25
+ 15
26
+ 29
27
+ 27
28
+ 0
29
+ 5
30
+ 7
31
+ 2
32
+ 64
33
+ 47
34
+ 49
35
+ 1
36
+ 1
37
+ 30
38
+ 8
39
+ 106
40
+ 26
41
+ 93
42
+ 1
43
+ 15
44
+ 24
45
+ 13
46
+ 45
47
+ 3
48
+ 4
49
+ 12
50
+ 49
51
+ 5
52
+ 1
53
+ 10
54
+ 44
55
+ 8
56
+ 101
57
+ 15
58
+ 24
59
+ 19
60
+ 0
61
+ 15
62
+ 26
63
+ 93
64
+ 2
65
+ 15
66
+ 29
67
+ 64
68
+ 0
69
+ 7
70
+ 6
71
+ 98
72
+ 7
73
+ 1
74
+ 30
75
+ 8
76
+ 70
77
+ 25
78
+ 92
79
+ 2
80
+ 27
81
+ 8
82
+ 75
83
+ 15
84
+ 7
85
+ 8
86
+ 8
87
+ 76
88
+ 1
89
+ 9
90
+ 91
91
+ 65
92
+ 7
93
+ 9
94
+ 45
95
+ 6
96
+ 10
97
+ 43
98
+ 9
99
+ 49
100
+ 11
101
+ 2
102
+ 8
103
+ 98
104
+ 5
105
+ 20
106
+ 0
107
+ 47
108
+ 49
109
+ 12
110
+ 1
111
+ 25
112
+ 8
113
+ 106
114
+ 15
115
+ 92
116
+ 1
117
+ 27
118
+ 34
119
+ 92
120
+ 0
121
+ 27
122
+ 15
123
+ 99
124
+ 7
125
+ 13
126
+ 65
127
+ 49
128
+ 14
129
+ 2
130
+ 13
131
+ 99
132
+ 12
133
+ 7
134
+ 15
135
+ 12
136
+ 7
137
+ 16
138
+ 12
139
+ 65
140
+ 12
141
+ 49
142
+ 17
143
+ 4
144
+ 15
145
+ 49
146
+ 15
147
+ 0
148
+ 15
149
+ 2
150
+ 11
151
+ I
152
+ a
153
+ I
154
+ 1
155
+ I
156
+ 0
157
+ I
158
+ 0
159
+ I
160
+ 0
161
+ n
162
+ p
163
+ 18
164
+ s
165
+ 6
166
+ thread
167
+ x
168
+ 7
169
+ require
170
+ s
171
+ 5
172
+ fiber
173
+ x
174
+ 9
175
+ LoadError
176
+ n
177
+ x
178
+ 3
179
+ ===
180
+ x
181
+ 8
182
+ Rubinius
183
+ x
184
+ 16
185
+ vm_const_defined
186
+ s
187
+ 8
188
+ constant
189
+ x
190
+ 5
191
+ Fiber
192
+ n
193
+ x
194
+ 9
195
+ const_set
196
+ x
197
+ 5
198
+ raise
199
+ x
200
+ 9
201
+ Celluloid
202
+ x
203
+ 11
204
+ open_module
205
+ x
206
+ 15
207
+ __module_init__
208
+ M
209
+ 1
210
+ n
211
+ n
212
+ x
213
+ 9
214
+ Celluloid
215
+ i
216
+ 105
217
+ 5
218
+ 66
219
+ 99
220
+ 7
221
+ 0
222
+ 45
223
+ 1
224
+ 2
225
+ 65
226
+ 49
227
+ 3
228
+ 3
229
+ 15
230
+ 1
231
+ 15
232
+ 99
233
+ 7
234
+ 4
235
+ 45
236
+ 1
237
+ 5
238
+ 65
239
+ 49
240
+ 3
241
+ 3
242
+ 15
243
+ 1
244
+ 15
245
+ 99
246
+ 7
247
+ 6
248
+ 45
249
+ 1
250
+ 7
251
+ 65
252
+ 49
253
+ 3
254
+ 3
255
+ 13
256
+ 99
257
+ 12
258
+ 7
259
+ 8
260
+ 12
261
+ 7
262
+ 9
263
+ 12
264
+ 65
265
+ 12
266
+ 49
267
+ 10
268
+ 4
269
+ 15
270
+ 49
271
+ 8
272
+ 0
273
+ 15
274
+ 99
275
+ 7
276
+ 11
277
+ 7
278
+ 12
279
+ 65
280
+ 5
281
+ 49
282
+ 10
283
+ 4
284
+ 15
285
+ 99
286
+ 7
287
+ 13
288
+ 7
289
+ 14
290
+ 65
291
+ 5
292
+ 49
293
+ 10
294
+ 4
295
+ 15
296
+ 99
297
+ 7
298
+ 15
299
+ 65
300
+ 49
301
+ 16
302
+ 2
303
+ 13
304
+ 99
305
+ 12
306
+ 7
307
+ 17
308
+ 12
309
+ 7
310
+ 18
311
+ 12
312
+ 65
313
+ 12
314
+ 49
315
+ 10
316
+ 4
317
+ 15
318
+ 49
319
+ 17
320
+ 0
321
+ 11
322
+ I
323
+ 6
324
+ I
325
+ 0
326
+ I
327
+ 0
328
+ I
329
+ 0
330
+ I
331
+ 0
332
+ n
333
+ p
334
+ 19
335
+ x
336
+ 13
337
+ NotActorError
338
+ x
339
+ 13
340
+ StandardError
341
+ n
342
+ x
343
+ 10
344
+ open_class
345
+ x
346
+ 14
347
+ DeadActorError
348
+ n
349
+ x
350
+ 10
351
+ AbortError
352
+ n
353
+ x
354
+ 14
355
+ __class_init__
356
+ M
357
+ 1
358
+ n
359
+ n
360
+ x
361
+ 10
362
+ AbortError
363
+ i
364
+ 24
365
+ 5
366
+ 66
367
+ 5
368
+ 7
369
+ 0
370
+ 47
371
+ 49
372
+ 1
373
+ 1
374
+ 15
375
+ 99
376
+ 7
377
+ 2
378
+ 7
379
+ 3
380
+ 65
381
+ 67
382
+ 49
383
+ 4
384
+ 0
385
+ 49
386
+ 5
387
+ 4
388
+ 11
389
+ I
390
+ 5
391
+ I
392
+ 0
393
+ I
394
+ 0
395
+ I
396
+ 0
397
+ I
398
+ 0
399
+ n
400
+ p
401
+ 6
402
+ x
403
+ 5
404
+ cause
405
+ x
406
+ 11
407
+ attr_reader
408
+ x
409
+ 10
410
+ initialize
411
+ M
412
+ 1
413
+ n
414
+ n
415
+ x
416
+ 10
417
+ initialize
418
+ i
419
+ 32
420
+ 20
421
+ 0
422
+ 38
423
+ 0
424
+ 15
425
+ 7
426
+ 1
427
+ 20
428
+ 0
429
+ 49
430
+ 2
431
+ 0
432
+ 47
433
+ 101
434
+ 3
435
+ 7
436
+ 4
437
+ 20
438
+ 0
439
+ 49
440
+ 3
441
+ 0
442
+ 47
443
+ 101
444
+ 3
445
+ 63
446
+ 4
447
+ 54
448
+ 52
449
+ 5
450
+ 1
451
+ 11
452
+ I
453
+ 5
454
+ I
455
+ 1
456
+ I
457
+ 1
458
+ I
459
+ 0
460
+ I
461
+ 1
462
+ n
463
+ p
464
+ 6
465
+ x
466
+ 6
467
+ @cause
468
+ s
469
+ 10
470
+ caused by
471
+ x
472
+ 7
473
+ inspect
474
+ x
475
+ 4
476
+ to_s
477
+ s
478
+ 2
479
+ :
480
+ x
481
+ 10
482
+ initialize
483
+ p
484
+ 7
485
+ I
486
+ -1
487
+ I
488
+ 19
489
+ I
490
+ 0
491
+ I
492
+ 1a
493
+ I
494
+ 5
495
+ I
496
+ 1b
497
+ I
498
+ 20
499
+ x
500
+ 48
501
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
502
+ p
503
+ 1
504
+ x
505
+ 5
506
+ cause
507
+ x
508
+ 17
509
+ method_visibility
510
+ x
511
+ 15
512
+ add_defn_method
513
+ p
514
+ 5
515
+ I
516
+ 2
517
+ I
518
+ 17
519
+ I
520
+ a
521
+ I
522
+ 19
523
+ I
524
+ 18
525
+ x
526
+ 48
527
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
528
+ p
529
+ 0
530
+ x
531
+ 13
532
+ attach_method
533
+ x
534
+ 6
535
+ actor?
536
+ M
537
+ 1
538
+ n
539
+ n
540
+ x
541
+ 6
542
+ actor?
543
+ i
544
+ 24
545
+ 45
546
+ 0
547
+ 1
548
+ 49
549
+ 2
550
+ 0
551
+ 7
552
+ 3
553
+ 49
554
+ 4
555
+ 1
556
+ 10
557
+ 16
558
+ 2
559
+ 8
560
+ 17
561
+ 3
562
+ 10
563
+ 22
564
+ 2
565
+ 8
566
+ 23
567
+ 3
568
+ 11
569
+ I
570
+ 2
571
+ I
572
+ 0
573
+ I
574
+ 0
575
+ I
576
+ 0
577
+ I
578
+ 0
579
+ n
580
+ p
581
+ 5
582
+ x
583
+ 6
584
+ Thread
585
+ n
586
+ x
587
+ 7
588
+ current
589
+ x
590
+ 5
591
+ actor
592
+ x
593
+ 2
594
+ []
595
+ p
596
+ 5
597
+ I
598
+ -1
599
+ I
600
+ 20
601
+ I
602
+ 0
603
+ I
604
+ 21
605
+ I
606
+ 18
607
+ x
608
+ 48
609
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
610
+ p
611
+ 0
612
+ x
613
+ 13
614
+ current_actor
615
+ M
616
+ 1
617
+ n
618
+ n
619
+ x
620
+ 13
621
+ current_actor
622
+ i
623
+ 36
624
+ 45
625
+ 0
626
+ 1
627
+ 49
628
+ 2
629
+ 0
630
+ 7
631
+ 3
632
+ 49
633
+ 4
634
+ 1
635
+ 19
636
+ 0
637
+ 15
638
+ 20
639
+ 0
640
+ 9
641
+ 21
642
+ 1
643
+ 8
644
+ 32
645
+ 5
646
+ 45
647
+ 5
648
+ 6
649
+ 7
650
+ 7
651
+ 64
652
+ 47
653
+ 49
654
+ 8
655
+ 2
656
+ 15
657
+ 20
658
+ 0
659
+ 11
660
+ I
661
+ 4
662
+ I
663
+ 1
664
+ I
665
+ 0
666
+ I
667
+ 0
668
+ I
669
+ 0
670
+ n
671
+ p
672
+ 9
673
+ x
674
+ 6
675
+ Thread
676
+ n
677
+ x
678
+ 7
679
+ current
680
+ x
681
+ 11
682
+ actor_proxy
683
+ x
684
+ 2
685
+ []
686
+ x
687
+ 13
688
+ NotActorError
689
+ n
690
+ s
691
+ 18
692
+ not in actor scope
693
+ x
694
+ 5
695
+ raise
696
+ p
697
+ 11
698
+ I
699
+ -1
700
+ I
701
+ 25
702
+ I
703
+ 0
704
+ I
705
+ 26
706
+ I
707
+ e
708
+ I
709
+ 27
710
+ I
711
+ 20
712
+ I
713
+ 0
714
+ I
715
+ 21
716
+ I
717
+ 29
718
+ I
719
+ 24
720
+ x
721
+ 48
722
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
723
+ p
724
+ 1
725
+ x
726
+ 5
727
+ actor
728
+ x
729
+ 5
730
+ Actor
731
+ x
732
+ 11
733
+ open_module
734
+ x
735
+ 15
736
+ __module_init__
737
+ M
738
+ 1
739
+ n
740
+ n
741
+ x
742
+ 5
743
+ Actor
744
+ i
745
+ 99
746
+ 5
747
+ 66
748
+ 5
749
+ 7
750
+ 0
751
+ 47
752
+ 49
753
+ 1
754
+ 1
755
+ 15
756
+ 99
757
+ 7
758
+ 2
759
+ 65
760
+ 49
761
+ 3
762
+ 2
763
+ 13
764
+ 99
765
+ 12
766
+ 7
767
+ 4
768
+ 12
769
+ 7
770
+ 5
771
+ 12
772
+ 65
773
+ 12
774
+ 49
775
+ 6
776
+ 4
777
+ 15
778
+ 49
779
+ 4
780
+ 0
781
+ 15
782
+ 99
783
+ 7
784
+ 7
785
+ 65
786
+ 49
787
+ 3
788
+ 2
789
+ 13
790
+ 99
791
+ 12
792
+ 7
793
+ 4
794
+ 12
795
+ 7
796
+ 8
797
+ 12
798
+ 65
799
+ 12
800
+ 49
801
+ 6
802
+ 4
803
+ 15
804
+ 49
805
+ 4
806
+ 0
807
+ 15
808
+ 99
809
+ 7
810
+ 9
811
+ 65
812
+ 49
813
+ 3
814
+ 2
815
+ 13
816
+ 99
817
+ 12
818
+ 7
819
+ 4
820
+ 12
821
+ 7
822
+ 10
823
+ 12
824
+ 65
825
+ 12
826
+ 49
827
+ 6
828
+ 4
829
+ 15
830
+ 49
831
+ 4
832
+ 0
833
+ 15
834
+ 99
835
+ 7
836
+ 11
837
+ 7
838
+ 12
839
+ 65
840
+ 5
841
+ 49
842
+ 6
843
+ 4
844
+ 11
845
+ I
846
+ 6
847
+ I
848
+ 0
849
+ I
850
+ 0
851
+ I
852
+ 0
853
+ I
854
+ 0
855
+ n
856
+ p
857
+ 13
858
+ x
859
+ 7
860
+ mailbox
861
+ x
862
+ 11
863
+ attr_reader
864
+ x
865
+ 12
866
+ ClassMethods
867
+ x
868
+ 11
869
+ open_module
870
+ x
871
+ 15
872
+ __module_init__
873
+ M
874
+ 1
875
+ n
876
+ n
877
+ x
878
+ 12
879
+ ClassMethods
880
+ i
881
+ 100
882
+ 5
883
+ 66
884
+ 5
885
+ 7
886
+ 0
887
+ 47
888
+ 49
889
+ 1
890
+ 1
891
+ 15
892
+ 99
893
+ 7
894
+ 2
895
+ 7
896
+ 3
897
+ 65
898
+ 67
899
+ 49
900
+ 4
901
+ 0
902
+ 49
903
+ 5
904
+ 4
905
+ 15
906
+ 5
907
+ 7
908
+ 6
909
+ 7
910
+ 2
911
+ 47
912
+ 49
913
+ 7
914
+ 2
915
+ 15
916
+ 99
917
+ 7
918
+ 8
919
+ 7
920
+ 9
921
+ 65
922
+ 67
923
+ 49
924
+ 4
925
+ 0
926
+ 49
927
+ 5
928
+ 4
929
+ 15
930
+ 5
931
+ 7
932
+ 10
933
+ 7
934
+ 8
935
+ 47
936
+ 49
937
+ 7
938
+ 2
939
+ 15
940
+ 99
941
+ 7
942
+ 11
943
+ 7
944
+ 12
945
+ 65
946
+ 67
947
+ 49
948
+ 4
949
+ 0
950
+ 49
951
+ 5
952
+ 4
953
+ 15
954
+ 99
955
+ 7
956
+ 13
957
+ 7
958
+ 14
959
+ 65
960
+ 67
961
+ 49
962
+ 4
963
+ 0
964
+ 49
965
+ 5
966
+ 4
967
+ 15
968
+ 99
969
+ 7
970
+ 15
971
+ 7
972
+ 16
973
+ 65
974
+ 67
975
+ 49
976
+ 4
977
+ 0
978
+ 49
979
+ 5
980
+ 4
981
+ 11
982
+ I
983
+ 5
984
+ I
985
+ 0
986
+ I
987
+ 0
988
+ I
989
+ 0
990
+ I
991
+ 0
992
+ n
993
+ p
994
+ 17
995
+ x
996
+ 12
997
+ exit_handler
998
+ x
999
+ 11
1000
+ attr_reader
1001
+ x
1002
+ 5
1003
+ spawn
1004
+ M
1005
+ 1
1006
+ n
1007
+ n
1008
+ x
1009
+ 5
1010
+ spawn
1011
+ i
1012
+ 45
1013
+ 95
1014
+ 19
1015
+ 1
1016
+ 15
1017
+ 5
1018
+ 48
1019
+ 0
1020
+ 19
1021
+ 2
1022
+ 15
1023
+ 20
1024
+ 2
1025
+ 49
1026
+ 1
1027
+ 0
1028
+ 19
1029
+ 3
1030
+ 15
1031
+ 20
1032
+ 3
1033
+ 7
1034
+ 2
1035
+ 20
1036
+ 0
1037
+ 36
1038
+ 20
1039
+ 1
1040
+ 13
1041
+ 70
1042
+ 10
1043
+ 38
1044
+ 44
1045
+ 43
1046
+ 3
1047
+ 12
1048
+ 49
1049
+ 4
1050
+ 1
1051
+ 51
1052
+ 5
1053
+ 1
1054
+ 15
1055
+ 20
1056
+ 3
1057
+ 11
1058
+ I
1059
+ 9
1060
+ I
1061
+ 4
1062
+ I
1063
+ 0
1064
+ I
1065
+ 0
1066
+ I
1067
+ 0
1068
+ I
1069
+ 0
1070
+ p
1071
+ 6
1072
+ x
1073
+ 8
1074
+ allocate
1075
+ x
1076
+ 13
1077
+ __start_actor
1078
+ x
1079
+ 10
1080
+ initialize
1081
+ x
1082
+ 4
1083
+ Proc
1084
+ x
1085
+ 14
1086
+ __from_block__
1087
+ x
1088
+ 4
1089
+ send
1090
+ p
1091
+ 11
1092
+ I
1093
+ -1
1094
+ I
1095
+ 38
1096
+ I
1097
+ 4
1098
+ I
1099
+ 39
1100
+ I
1101
+ a
1102
+ I
1103
+ 3a
1104
+ I
1105
+ 12
1106
+ I
1107
+ 3b
1108
+ I
1109
+ 2a
1110
+ I
1111
+ 3c
1112
+ I
1113
+ 2d
1114
+ x
1115
+ 48
1116
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
1117
+ p
1118
+ 4
1119
+ x
1120
+ 4
1121
+ args
1122
+ x
1123
+ 5
1124
+ block
1125
+ x
1126
+ 5
1127
+ actor
1128
+ x
1129
+ 5
1130
+ proxy
1131
+ x
1132
+ 17
1133
+ method_visibility
1134
+ x
1135
+ 15
1136
+ add_defn_method
1137
+ x
1138
+ 3
1139
+ new
1140
+ x
1141
+ 12
1142
+ alias_method
1143
+ x
1144
+ 10
1145
+ spawn_link
1146
+ M
1147
+ 1
1148
+ n
1149
+ n
1150
+ x
1151
+ 10
1152
+ spawn_link
1153
+ i
1154
+ 86
1155
+ 95
1156
+ 19
1157
+ 1
1158
+ 15
1159
+ 45
1160
+ 0
1161
+ 1
1162
+ 49
1163
+ 2
1164
+ 0
1165
+ 7
1166
+ 3
1167
+ 49
1168
+ 4
1169
+ 1
1170
+ 19
1171
+ 2
1172
+ 15
1173
+ 20
1174
+ 2
1175
+ 9
1176
+ 25
1177
+ 1
1178
+ 8
1179
+ 36
1180
+ 5
1181
+ 45
1182
+ 5
1183
+ 6
1184
+ 7
1185
+ 7
1186
+ 64
1187
+ 47
1188
+ 49
1189
+ 8
1190
+ 2
1191
+ 15
1192
+ 5
1193
+ 48
1194
+ 9
1195
+ 19
1196
+ 3
1197
+ 15
1198
+ 20
1199
+ 3
1200
+ 49
1201
+ 10
1202
+ 0
1203
+ 19
1204
+ 4
1205
+ 15
1206
+ 20
1207
+ 2
1208
+ 20
1209
+ 3
1210
+ 49
1211
+ 11
1212
+ 1
1213
+ 15
1214
+ 20
1215
+ 4
1216
+ 7
1217
+ 12
1218
+ 20
1219
+ 0
1220
+ 36
1221
+ 20
1222
+ 1
1223
+ 13
1224
+ 70
1225
+ 10
1226
+ 79
1227
+ 44
1228
+ 43
1229
+ 13
1230
+ 12
1231
+ 49
1232
+ 14
1233
+ 1
1234
+ 51
1235
+ 15
1236
+ 1
1237
+ 15
1238
+ 20
1239
+ 4
1240
+ 11
1241
+ I
1242
+ a
1243
+ I
1244
+ 5
1245
+ I
1246
+ 0
1247
+ I
1248
+ 0
1249
+ I
1250
+ 0
1251
+ I
1252
+ 0
1253
+ p
1254
+ 16
1255
+ x
1256
+ 6
1257
+ Thread
1258
+ n
1259
+ x
1260
+ 7
1261
+ current
1262
+ x
1263
+ 5
1264
+ actor
1265
+ x
1266
+ 2
1267
+ []
1268
+ x
1269
+ 13
1270
+ NotActorError
1271
+ n
1272
+ s
1273
+ 32
1274
+ can't link outside actor context
1275
+ x
1276
+ 5
1277
+ raise
1278
+ x
1279
+ 8
1280
+ allocate
1281
+ x
1282
+ 13
1283
+ __start_actor
1284
+ x
1285
+ 4
1286
+ link
1287
+ x
1288
+ 10
1289
+ initialize
1290
+ x
1291
+ 4
1292
+ Proc
1293
+ x
1294
+ 14
1295
+ __from_block__
1296
+ x
1297
+ 4
1298
+ send
1299
+ p
1300
+ 19
1301
+ I
1302
+ -1
1303
+ I
1304
+ 41
1305
+ I
1306
+ 4
1307
+ I
1308
+ 42
1309
+ I
1310
+ 12
1311
+ I
1312
+ 43
1313
+ I
1314
+ 24
1315
+ I
1316
+ 0
1317
+ I
1318
+ 25
1319
+ I
1320
+ 46
1321
+ I
1322
+ 2b
1323
+ I
1324
+ 47
1325
+ I
1326
+ 33
1327
+ I
1328
+ 48
1329
+ I
1330
+ 3b
1331
+ I
1332
+ 49
1333
+ I
1334
+ 53
1335
+ I
1336
+ 4b
1337
+ I
1338
+ 56
1339
+ x
1340
+ 48
1341
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
1342
+ p
1343
+ 5
1344
+ x
1345
+ 4
1346
+ args
1347
+ x
1348
+ 5
1349
+ block
1350
+ x
1351
+ 13
1352
+ current_actor
1353
+ x
1354
+ 5
1355
+ actor
1356
+ x
1357
+ 5
1358
+ proxy
1359
+ x
1360
+ 8
1361
+ new_link
1362
+ x
1363
+ 9
1364
+ supervise
1365
+ M
1366
+ 1
1367
+ n
1368
+ n
1369
+ x
1370
+ 9
1371
+ supervise
1372
+ i
1373
+ 30
1374
+ 95
1375
+ 19
1376
+ 1
1377
+ 15
1378
+ 45
1379
+ 0
1380
+ 1
1381
+ 43
1382
+ 2
1383
+ 5
1384
+ 20
1385
+ 0
1386
+ 36
1387
+ 20
1388
+ 1
1389
+ 13
1390
+ 70
1391
+ 10
1392
+ 26
1393
+ 44
1394
+ 43
1395
+ 3
1396
+ 12
1397
+ 49
1398
+ 4
1399
+ 1
1400
+ 51
1401
+ 5
1402
+ 1
1403
+ 11
1404
+ I
1405
+ 7
1406
+ I
1407
+ 2
1408
+ I
1409
+ 0
1410
+ I
1411
+ 0
1412
+ I
1413
+ 0
1414
+ I
1415
+ 0
1416
+ p
1417
+ 6
1418
+ x
1419
+ 9
1420
+ Celluloid
1421
+ n
1422
+ x
1423
+ 10
1424
+ Supervisor
1425
+ x
1426
+ 4
1427
+ Proc
1428
+ x
1429
+ 14
1430
+ __from_block__
1431
+ x
1432
+ 9
1433
+ supervise
1434
+ p
1435
+ 5
1436
+ I
1437
+ -1
1438
+ I
1439
+ 51
1440
+ I
1441
+ 4
1442
+ I
1443
+ 52
1444
+ I
1445
+ 1e
1446
+ x
1447
+ 48
1448
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
1449
+ p
1450
+ 2
1451
+ x
1452
+ 4
1453
+ args
1454
+ x
1455
+ 5
1456
+ block
1457
+ x
1458
+ 12
1459
+ supervise_as
1460
+ M
1461
+ 1
1462
+ n
1463
+ n
1464
+ x
1465
+ 12
1466
+ supervise_as
1467
+ i
1468
+ 32
1469
+ 95
1470
+ 19
1471
+ 2
1472
+ 15
1473
+ 45
1474
+ 0
1475
+ 1
1476
+ 43
1477
+ 2
1478
+ 20
1479
+ 0
1480
+ 5
1481
+ 20
1482
+ 1
1483
+ 36
1484
+ 20
1485
+ 2
1486
+ 13
1487
+ 70
1488
+ 10
1489
+ 28
1490
+ 44
1491
+ 43
1492
+ 3
1493
+ 12
1494
+ 49
1495
+ 4
1496
+ 1
1497
+ 51
1498
+ 5
1499
+ 2
1500
+ 11
1501
+ I
1502
+ 9
1503
+ I
1504
+ 3
1505
+ I
1506
+ 1
1507
+ I
1508
+ 0
1509
+ I
1510
+ 1
1511
+ I
1512
+ 1
1513
+ p
1514
+ 6
1515
+ x
1516
+ 9
1517
+ Celluloid
1518
+ n
1519
+ x
1520
+ 10
1521
+ Supervisor
1522
+ x
1523
+ 4
1524
+ Proc
1525
+ x
1526
+ 14
1527
+ __from_block__
1528
+ x
1529
+ 12
1530
+ supervise_as
1531
+ p
1532
+ 5
1533
+ I
1534
+ -1
1535
+ I
1536
+ 57
1537
+ I
1538
+ 4
1539
+ I
1540
+ 58
1541
+ I
1542
+ 20
1543
+ x
1544
+ 48
1545
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
1546
+ p
1547
+ 3
1548
+ x
1549
+ 4
1550
+ name
1551
+ x
1552
+ 4
1553
+ args
1554
+ x
1555
+ 5
1556
+ block
1557
+ x
1558
+ 9
1559
+ trap_exit
1560
+ M
1561
+ 1
1562
+ n
1563
+ n
1564
+ x
1565
+ 9
1566
+ trap_exit
1567
+ i
1568
+ 8
1569
+ 20
1570
+ 0
1571
+ 49
1572
+ 0
1573
+ 0
1574
+ 38
1575
+ 1
1576
+ 11
1577
+ I
1578
+ 2
1579
+ I
1580
+ 1
1581
+ I
1582
+ 1
1583
+ I
1584
+ 0
1585
+ I
1586
+ 1
1587
+ n
1588
+ p
1589
+ 2
1590
+ x
1591
+ 6
1592
+ to_sym
1593
+ x
1594
+ 13
1595
+ @exit_handler
1596
+ p
1597
+ 5
1598
+ I
1599
+ -1
1600
+ I
1601
+ 5c
1602
+ I
1603
+ 0
1604
+ I
1605
+ 5d
1606
+ I
1607
+ 8
1608
+ x
1609
+ 48
1610
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
1611
+ p
1612
+ 1
1613
+ x
1614
+ 8
1615
+ callback
1616
+ p
1617
+ 17
1618
+ I
1619
+ 2
1620
+ I
1621
+ 35
1622
+ I
1623
+ a
1624
+ I
1625
+ 38
1626
+ I
1627
+ 18
1628
+ I
1629
+ 3e
1630
+ I
1631
+ 22
1632
+ I
1633
+ 41
1634
+ I
1635
+ 30
1636
+ I
1637
+ 4d
1638
+ I
1639
+ 3a
1640
+ I
1641
+ 51
1642
+ I
1643
+ 48
1644
+ I
1645
+ 57
1646
+ I
1647
+ 56
1648
+ I
1649
+ 5c
1650
+ I
1651
+ 64
1652
+ x
1653
+ 48
1654
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
1655
+ p
1656
+ 0
1657
+ x
1658
+ 13
1659
+ attach_method
1660
+ x
1661
+ 15
1662
+ InstanceMethods
1663
+ M
1664
+ 1
1665
+ n
1666
+ n
1667
+ x
1668
+ 15
1669
+ InstanceMethods
1670
+ i
1671
+ 58
1672
+ 5
1673
+ 66
1674
+ 99
1675
+ 7
1676
+ 0
1677
+ 7
1678
+ 1
1679
+ 65
1680
+ 67
1681
+ 49
1682
+ 2
1683
+ 0
1684
+ 49
1685
+ 3
1686
+ 4
1687
+ 15
1688
+ 99
1689
+ 7
1690
+ 4
1691
+ 7
1692
+ 5
1693
+ 65
1694
+ 67
1695
+ 49
1696
+ 2
1697
+ 0
1698
+ 49
1699
+ 3
1700
+ 4
1701
+ 15
1702
+ 99
1703
+ 7
1704
+ 6
1705
+ 7
1706
+ 7
1707
+ 65
1708
+ 67
1709
+ 49
1710
+ 2
1711
+ 0
1712
+ 49
1713
+ 3
1714
+ 4
1715
+ 15
1716
+ 99
1717
+ 7
1718
+ 8
1719
+ 7
1720
+ 9
1721
+ 65
1722
+ 67
1723
+ 49
1724
+ 2
1725
+ 0
1726
+ 49
1727
+ 3
1728
+ 4
1729
+ 11
1730
+ I
1731
+ 5
1732
+ I
1733
+ 0
1734
+ I
1735
+ 0
1736
+ I
1737
+ 0
1738
+ I
1739
+ 0
1740
+ n
1741
+ p
1742
+ 10
1743
+ x
1744
+ 6
1745
+ alive?
1746
+ M
1747
+ 1
1748
+ n
1749
+ n
1750
+ x
1751
+ 6
1752
+ alive?
1753
+ i
1754
+ 6
1755
+ 39
1756
+ 0
1757
+ 49
1758
+ 1
1759
+ 0
1760
+ 11
1761
+ I
1762
+ 1
1763
+ I
1764
+ 0
1765
+ I
1766
+ 0
1767
+ I
1768
+ 0
1769
+ I
1770
+ 0
1771
+ n
1772
+ p
1773
+ 2
1774
+ x
1775
+ 7
1776
+ @thread
1777
+ x
1778
+ 6
1779
+ alive?
1780
+ p
1781
+ 5
1782
+ I
1783
+ -1
1784
+ I
1785
+ 64
1786
+ I
1787
+ 0
1788
+ I
1789
+ 65
1790
+ I
1791
+ 6
1792
+ x
1793
+ 48
1794
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
1795
+ p
1796
+ 0
1797
+ x
1798
+ 17
1799
+ method_visibility
1800
+ x
1801
+ 15
1802
+ add_defn_method
1803
+ x
1804
+ 5
1805
+ abort
1806
+ M
1807
+ 1
1808
+ n
1809
+ n
1810
+ x
1811
+ 5
1812
+ abort
1813
+ i
1814
+ 34
1815
+ 5
1816
+ 45
1817
+ 0
1818
+ 1
1819
+ 13
1820
+ 71
1821
+ 2
1822
+ 47
1823
+ 9
1824
+ 24
1825
+ 47
1826
+ 49
1827
+ 3
1828
+ 0
1829
+ 13
1830
+ 20
1831
+ 0
1832
+ 47
1833
+ 49
1834
+ 4
1835
+ 1
1836
+ 15
1837
+ 8
1838
+ 29
1839
+ 20
1840
+ 0
1841
+ 49
1842
+ 2
1843
+ 1
1844
+ 47
1845
+ 49
1846
+ 5
1847
+ 1
1848
+ 11
1849
+ I
1850
+ 5
1851
+ I
1852
+ 1
1853
+ I
1854
+ 1
1855
+ I
1856
+ 0
1857
+ I
1858
+ 1
1859
+ n
1860
+ p
1861
+ 6
1862
+ x
1863
+ 10
1864
+ AbortError
1865
+ n
1866
+ x
1867
+ 3
1868
+ new
1869
+ x
1870
+ 8
1871
+ allocate
1872
+ x
1873
+ 10
1874
+ initialize
1875
+ x
1876
+ 5
1877
+ raise
1878
+ p
1879
+ 5
1880
+ I
1881
+ -1
1882
+ I
1883
+ 69
1884
+ I
1885
+ 0
1886
+ I
1887
+ 6a
1888
+ I
1889
+ 22
1890
+ x
1891
+ 48
1892
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
1893
+ p
1894
+ 1
1895
+ x
1896
+ 5
1897
+ cause
1898
+ x
1899
+ 9
1900
+ terminate
1901
+ M
1902
+ 1
1903
+ n
1904
+ n
1905
+ x
1906
+ 9
1907
+ terminate
1908
+ i
1909
+ 4
1910
+ 3
1911
+ 38
1912
+ 0
1913
+ 11
1914
+ I
1915
+ 1
1916
+ I
1917
+ 0
1918
+ I
1919
+ 0
1920
+ I
1921
+ 0
1922
+ I
1923
+ 0
1924
+ n
1925
+ p
1926
+ 1
1927
+ x
1928
+ 8
1929
+ @running
1930
+ p
1931
+ 5
1932
+ I
1933
+ -1
1934
+ I
1935
+ 6e
1936
+ I
1937
+ 0
1938
+ I
1939
+ 6f
1940
+ I
1941
+ 4
1942
+ x
1943
+ 48
1944
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
1945
+ p
1946
+ 0
1947
+ x
1948
+ 7
1949
+ inspect
1950
+ M
1951
+ 1
1952
+ n
1953
+ n
1954
+ x
1955
+ 7
1956
+ inspect
1957
+ i
1958
+ 83
1959
+ 7
1960
+ 0
1961
+ 5
1962
+ 49
1963
+ 1
1964
+ 0
1965
+ 47
1966
+ 101
1967
+ 2
1968
+ 7
1969
+ 3
1970
+ 5
1971
+ 49
1972
+ 4
1973
+ 0
1974
+ 4
1975
+ 16
1976
+ 49
1977
+ 2
1978
+ 1
1979
+ 47
1980
+ 101
1981
+ 2
1982
+ 7
1983
+ 5
1984
+ 63
1985
+ 5
1986
+ 19
1987
+ 0
1988
+ 15
1989
+ 35
1990
+ 0
1991
+ 19
1992
+ 1
1993
+ 15
1994
+ 5
1995
+ 48
1996
+ 6
1997
+ 56
1998
+ 7
1999
+ 50
2000
+ 8
2001
+ 0
2002
+ 15
2003
+ 20
2004
+ 1
2005
+ 49
2006
+ 9
2007
+ 0
2008
+ 9
2009
+ 54
2010
+ 1
2011
+ 8
2012
+ 73
2013
+ 20
2014
+ 0
2015
+ 7
2016
+ 10
2017
+ 64
2018
+ 49
2019
+ 11
2020
+ 1
2021
+ 20
2022
+ 1
2023
+ 7
2024
+ 10
2025
+ 64
2026
+ 49
2027
+ 12
2028
+ 1
2029
+ 49
2030
+ 11
2031
+ 1
2032
+ 15
2033
+ 20
2034
+ 0
2035
+ 7
2036
+ 13
2037
+ 64
2038
+ 49
2039
+ 11
2040
+ 1
2041
+ 11
2042
+ I
2043
+ 7
2044
+ I
2045
+ 2
2046
+ I
2047
+ 0
2048
+ I
2049
+ 0
2050
+ I
2051
+ 0
2052
+ n
2053
+ p
2054
+ 14
2055
+ s
2056
+ 19
2057
+ #<Celluloid::Actor(
2058
+ x
2059
+ 5
2060
+ class
2061
+ x
2062
+ 4
2063
+ to_s
2064
+ s
2065
+ 3
2066
+ :0x
2067
+ x
2068
+ 9
2069
+ object_id
2070
+ s
2071
+ 1
2072
+ )
2073
+ x
2074
+ 18
2075
+ instance_variables
2076
+ M
2077
+ 1
2078
+ p
2079
+ 2
2080
+ x
2081
+ 9
2082
+ for_block
2083
+ t
2084
+ n
2085
+ x
2086
+ 7
2087
+ inspect
2088
+ i
2089
+ 63
2090
+ 57
2091
+ 19
2092
+ 0
2093
+ 15
2094
+ 7
2095
+ 0
2096
+ 64
2097
+ 7
2098
+ 1
2099
+ 64
2100
+ 7
2101
+ 2
2102
+ 64
2103
+ 7
2104
+ 3
2105
+ 64
2106
+ 35
2107
+ 4
2108
+ 20
2109
+ 0
2110
+ 49
2111
+ 4
2112
+ 0
2113
+ 49
2114
+ 5
2115
+ 1
2116
+ 9
2117
+ 32
2118
+ 1
2119
+ 11
2120
+ 8
2121
+ 33
2122
+ 1
2123
+ 15
2124
+ 21
2125
+ 1
2126
+ 1
2127
+ 20
2128
+ 0
2129
+ 47
2130
+ 101
2131
+ 4
2132
+ 7
2133
+ 6
2134
+ 5
2135
+ 20
2136
+ 0
2137
+ 47
2138
+ 49
2139
+ 7
2140
+ 1
2141
+ 49
2142
+ 8
2143
+ 0
2144
+ 47
2145
+ 101
2146
+ 4
2147
+ 63
2148
+ 3
2149
+ 49
2150
+ 9
2151
+ 1
2152
+ 11
2153
+ I
2154
+ 7
2155
+ I
2156
+ 1
2157
+ I
2158
+ 1
2159
+ I
2160
+ 0
2161
+ I
2162
+ 1
2163
+ n
2164
+ p
2165
+ 10
2166
+ s
2167
+ 8
2168
+ @mailbox
2169
+ s
2170
+ 6
2171
+ @links
2172
+ s
2173
+ 6
2174
+ @proxy
2175
+ s
2176
+ 7
2177
+ @thread
2178
+ x
2179
+ 4
2180
+ to_s
2181
+ x
2182
+ 8
2183
+ include?
2184
+ s
2185
+ 1
2186
+ =
2187
+ x
2188
+ 21
2189
+ instance_variable_get
2190
+ x
2191
+ 7
2192
+ inspect
2193
+ x
2194
+ 2
2195
+ <<
2196
+ p
2197
+ 9
2198
+ I
2199
+ 0
2200
+ I
2201
+ 76
2202
+ I
2203
+ 4
2204
+ I
2205
+ 77
2206
+ I
2207
+ 21
2208
+ I
2209
+ 0
2210
+ I
2211
+ 22
2212
+ I
2213
+ 78
2214
+ I
2215
+ 3f
2216
+ x
2217
+ 48
2218
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
2219
+ p
2220
+ 1
2221
+ x
2222
+ 4
2223
+ ivar
2224
+ x
2225
+ 4
2226
+ each
2227
+ x
2228
+ 6
2229
+ empty?
2230
+ s
2231
+ 1
2232
+
2233
+ x
2234
+ 2
2235
+ <<
2236
+ x
2237
+ 4
2238
+ join
2239
+ s
2240
+ 1
2241
+ >
2242
+ p
2243
+ 15
2244
+ I
2245
+ -1
2246
+ I
2247
+ 72
2248
+ I
2249
+ 0
2250
+ I
2251
+ 73
2252
+ I
2253
+ 1e
2254
+ I
2255
+ 75
2256
+ I
2257
+ 23
2258
+ I
2259
+ 76
2260
+ I
2261
+ 2c
2262
+ I
2263
+ 7b
2264
+ I
2265
+ 49
2266
+ I
2267
+ 0
2268
+ I
2269
+ 4a
2270
+ I
2271
+ 7c
2272
+ I
2273
+ 53
2274
+ x
2275
+ 48
2276
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
2277
+ p
2278
+ 2
2279
+ x
2280
+ 3
2281
+ str
2282
+ x
2283
+ 5
2284
+ ivars
2285
+ p
2286
+ 9
2287
+ I
2288
+ 2
2289
+ I
2290
+ 64
2291
+ I
2292
+ 10
2293
+ I
2294
+ 69
2295
+ I
2296
+ 1e
2297
+ I
2298
+ 6e
2299
+ I
2300
+ 2c
2301
+ I
2302
+ 72
2303
+ I
2304
+ 3a
2305
+ x
2306
+ 48
2307
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
2308
+ p
2309
+ 0
2310
+ x
2311
+ 15
2312
+ InternalMethods
2313
+ M
2314
+ 1
2315
+ n
2316
+ n
2317
+ x
2318
+ 15
2319
+ InternalMethods
2320
+ i
2321
+ 114
2322
+ 5
2323
+ 66
2324
+ 99
2325
+ 7
2326
+ 0
2327
+ 7
2328
+ 1
2329
+ 65
2330
+ 67
2331
+ 49
2332
+ 2
2333
+ 0
2334
+ 49
2335
+ 3
2336
+ 4
2337
+ 15
2338
+ 99
2339
+ 7
2340
+ 4
2341
+ 7
2342
+ 5
2343
+ 65
2344
+ 67
2345
+ 49
2346
+ 2
2347
+ 0
2348
+ 49
2349
+ 3
2350
+ 4
2351
+ 15
2352
+ 99
2353
+ 7
2354
+ 6
2355
+ 7
2356
+ 7
2357
+ 65
2358
+ 67
2359
+ 49
2360
+ 2
2361
+ 0
2362
+ 49
2363
+ 3
2364
+ 4
2365
+ 15
2366
+ 99
2367
+ 7
2368
+ 8
2369
+ 7
2370
+ 9
2371
+ 65
2372
+ 67
2373
+ 49
2374
+ 2
2375
+ 0
2376
+ 49
2377
+ 3
2378
+ 4
2379
+ 15
2380
+ 99
2381
+ 7
2382
+ 10
2383
+ 7
2384
+ 11
2385
+ 65
2386
+ 67
2387
+ 49
2388
+ 2
2389
+ 0
2390
+ 49
2391
+ 3
2392
+ 4
2393
+ 15
2394
+ 99
2395
+ 7
2396
+ 12
2397
+ 7
2398
+ 13
2399
+ 65
2400
+ 67
2401
+ 49
2402
+ 2
2403
+ 0
2404
+ 49
2405
+ 3
2406
+ 4
2407
+ 15
2408
+ 99
2409
+ 7
2410
+ 14
2411
+ 7
2412
+ 15
2413
+ 65
2414
+ 67
2415
+ 49
2416
+ 2
2417
+ 0
2418
+ 49
2419
+ 3
2420
+ 4
2421
+ 15
2422
+ 99
2423
+ 7
2424
+ 16
2425
+ 7
2426
+ 17
2427
+ 65
2428
+ 67
2429
+ 49
2430
+ 2
2431
+ 0
2432
+ 49
2433
+ 3
2434
+ 4
2435
+ 11
2436
+ I
2437
+ 5
2438
+ I
2439
+ 0
2440
+ I
2441
+ 0
2442
+ I
2443
+ 0
2444
+ I
2445
+ 0
2446
+ n
2447
+ p
2448
+ 18
2449
+ x
2450
+ 13
2451
+ __start_actor
2452
+ M
2453
+ 1
2454
+ n
2455
+ n
2456
+ x
2457
+ 13
2458
+ __start_actor
2459
+ i
2460
+ 109
2461
+ 95
2462
+ 19
2463
+ 1
2464
+ 15
2465
+ 45
2466
+ 0
2467
+ 1
2468
+ 13
2469
+ 71
2470
+ 2
2471
+ 47
2472
+ 9
2473
+ 25
2474
+ 47
2475
+ 49
2476
+ 3
2477
+ 0
2478
+ 13
2479
+ 47
2480
+ 49
2481
+ 4
2482
+ 0
2483
+ 15
2484
+ 8
2485
+ 28
2486
+ 49
2487
+ 2
2488
+ 0
2489
+ 38
2490
+ 5
2491
+ 15
2492
+ 45
2493
+ 6
2494
+ 7
2495
+ 13
2496
+ 71
2497
+ 2
2498
+ 47
2499
+ 9
2500
+ 52
2501
+ 47
2502
+ 49
2503
+ 3
2504
+ 0
2505
+ 13
2506
+ 47
2507
+ 49
2508
+ 4
2509
+ 0
2510
+ 15
2511
+ 8
2512
+ 55
2513
+ 49
2514
+ 2
2515
+ 0
2516
+ 38
2517
+ 8
2518
+ 15
2519
+ 45
2520
+ 9
2521
+ 10
2522
+ 13
2523
+ 71
2524
+ 2
2525
+ 47
2526
+ 9
2527
+ 82
2528
+ 47
2529
+ 49
2530
+ 3
2531
+ 0
2532
+ 13
2533
+ 5
2534
+ 39
2535
+ 5
2536
+ 47
2537
+ 49
2538
+ 4
2539
+ 2
2540
+ 15
2541
+ 8
2542
+ 88
2543
+ 5
2544
+ 39
2545
+ 5
2546
+ 49
2547
+ 2
2548
+ 2
2549
+ 38
2550
+ 11
2551
+ 15
2552
+ 2
2553
+ 38
2554
+ 12
2555
+ 15
2556
+ 45
2557
+ 13
2558
+ 14
2559
+ 56
2560
+ 15
2561
+ 50
2562
+ 2
2563
+ 0
2564
+ 38
2565
+ 16
2566
+ 15
2567
+ 39
2568
+ 11
2569
+ 11
2570
+ I
2571
+ 6
2572
+ I
2573
+ 2
2574
+ I
2575
+ 0
2576
+ I
2577
+ 0
2578
+ I
2579
+ 0
2580
+ I
2581
+ 0
2582
+ p
2583
+ 17
2584
+ x
2585
+ 7
2586
+ Mailbox
2587
+ n
2588
+ x
2589
+ 3
2590
+ new
2591
+ x
2592
+ 8
2593
+ allocate
2594
+ x
2595
+ 10
2596
+ initialize
2597
+ x
2598
+ 8
2599
+ @mailbox
2600
+ x
2601
+ 5
2602
+ Links
2603
+ n
2604
+ x
2605
+ 6
2606
+ @links
2607
+ x
2608
+ 10
2609
+ ActorProxy
2610
+ n
2611
+ x
2612
+ 6
2613
+ @proxy
2614
+ x
2615
+ 8
2616
+ @running
2617
+ x
2618
+ 6
2619
+ Thread
2620
+ n
2621
+ M
2622
+ 1
2623
+ p
2624
+ 2
2625
+ x
2626
+ 9
2627
+ for_block
2628
+ t
2629
+ n
2630
+ x
2631
+ 13
2632
+ __start_actor
2633
+ i
2634
+ 8
2635
+ 5
2636
+ 48
2637
+ 0
2638
+ 15
2639
+ 5
2640
+ 48
2641
+ 1
2642
+ 11
2643
+ I
2644
+ 2
2645
+ I
2646
+ 0
2647
+ I
2648
+ 0
2649
+ I
2650
+ 0
2651
+ I
2652
+ 0
2653
+ I
2654
+ -2
2655
+ p
2656
+ 2
2657
+ x
2658
+ 13
2659
+ __init_thread
2660
+ x
2661
+ 11
2662
+ __run_actor
2663
+ p
2664
+ 5
2665
+ I
2666
+ 0
2667
+ I
2668
+ 8a
2669
+ I
2670
+ 4
2671
+ I
2672
+ 8b
2673
+ I
2674
+ 8
2675
+ x
2676
+ 48
2677
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
2678
+ p
2679
+ 0
2680
+ x
2681
+ 7
2682
+ @thread
2683
+ p
2684
+ 15
2685
+ I
2686
+ -1
2687
+ I
2688
+ 83
2689
+ I
2690
+ 4
2691
+ I
2692
+ 84
2693
+ I
2694
+ 1f
2695
+ I
2696
+ 85
2697
+ I
2698
+ 3a
2699
+ I
2700
+ 86
2701
+ I
2702
+ 5b
2703
+ I
2704
+ 87
2705
+ I
2706
+ 5f
2707
+ I
2708
+ 89
2709
+ I
2710
+ 6a
2711
+ I
2712
+ 8e
2713
+ I
2714
+ 6d
2715
+ x
2716
+ 48
2717
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
2718
+ p
2719
+ 2
2720
+ x
2721
+ 4
2722
+ args
2723
+ x
2724
+ 5
2725
+ block
2726
+ x
2727
+ 17
2728
+ method_visibility
2729
+ x
2730
+ 15
2731
+ add_defn_method
2732
+ x
2733
+ 13
2734
+ __init_thread
2735
+ M
2736
+ 1
2737
+ n
2738
+ n
2739
+ x
2740
+ 13
2741
+ __init_thread
2742
+ i
2743
+ 53
2744
+ 45
2745
+ 0
2746
+ 1
2747
+ 49
2748
+ 2
2749
+ 0
2750
+ 7
2751
+ 3
2752
+ 5
2753
+ 13
2754
+ 18
2755
+ 3
2756
+ 49
2757
+ 4
2758
+ 2
2759
+ 15
2760
+ 15
2761
+ 45
2762
+ 0
2763
+ 5
2764
+ 49
2765
+ 2
2766
+ 0
2767
+ 7
2768
+ 6
2769
+ 39
2770
+ 7
2771
+ 13
2772
+ 18
2773
+ 3
2774
+ 49
2775
+ 4
2776
+ 2
2777
+ 15
2778
+ 15
2779
+ 45
2780
+ 0
2781
+ 8
2782
+ 49
2783
+ 2
2784
+ 0
2785
+ 7
2786
+ 9
2787
+ 39
2788
+ 10
2789
+ 13
2790
+ 18
2791
+ 3
2792
+ 49
2793
+ 4
2794
+ 2
2795
+ 15
2796
+ 11
2797
+ I
2798
+ 4
2799
+ I
2800
+ 0
2801
+ I
2802
+ 0
2803
+ I
2804
+ 0
2805
+ I
2806
+ 0
2807
+ n
2808
+ p
2809
+ 11
2810
+ x
2811
+ 6
2812
+ Thread
2813
+ n
2814
+ x
2815
+ 7
2816
+ current
2817
+ x
2818
+ 5
2819
+ actor
2820
+ x
2821
+ 3
2822
+ []=
2823
+ n
2824
+ x
2825
+ 11
2826
+ actor_proxy
2827
+ x
2828
+ 6
2829
+ @proxy
2830
+ n
2831
+ x
2832
+ 7
2833
+ mailbox
2834
+ x
2835
+ 8
2836
+ @mailbox
2837
+ p
2838
+ 9
2839
+ I
2840
+ -1
2841
+ I
2842
+ 92
2843
+ I
2844
+ 0
2845
+ I
2846
+ 93
2847
+ I
2848
+ 11
2849
+ I
2850
+ 94
2851
+ I
2852
+ 23
2853
+ I
2854
+ 95
2855
+ I
2856
+ 35
2857
+ x
2858
+ 48
2859
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
2860
+ p
2861
+ 0
2862
+ x
2863
+ 11
2864
+ __run_actor
2865
+ M
2866
+ 1
2867
+ n
2868
+ n
2869
+ x
2870
+ 11
2871
+ __run_actor
2872
+ i
2873
+ 121
2874
+ 29
2875
+ 97
2876
+ 1
2877
+ 26
2878
+ 93
2879
+ 0
2880
+ 15
2881
+ 26
2882
+ 93
2883
+ 1
2884
+ 15
2885
+ 29
2886
+ 54
2887
+ 0
2888
+ 5
2889
+ 48
2890
+ 0
2891
+ 15
2892
+ 5
2893
+ 45
2894
+ 1
2895
+ 2
2896
+ 13
2897
+ 71
2898
+ 3
2899
+ 47
2900
+ 9
2901
+ 42
2902
+ 47
2903
+ 49
2904
+ 4
2905
+ 0
2906
+ 13
2907
+ 39
2908
+ 5
2909
+ 47
2910
+ 49
2911
+ 6
2912
+ 1
2913
+ 15
2914
+ 8
2915
+ 47
2916
+ 39
2917
+ 5
2918
+ 49
2919
+ 3
2920
+ 1
2921
+ 47
2922
+ 49
2923
+ 7
2924
+ 1
2925
+ 30
2926
+ 8
2927
+ 91
2928
+ 26
2929
+ 93
2930
+ 2
2931
+ 15
2932
+ 24
2933
+ 13
2934
+ 45
2935
+ 8
2936
+ 9
2937
+ 12
2938
+ 49
2939
+ 10
2940
+ 1
2941
+ 10
2942
+ 71
2943
+ 8
2944
+ 86
2945
+ 15
2946
+ 24
2947
+ 19
2948
+ 0
2949
+ 15
2950
+ 5
2951
+ 20
2952
+ 0
2953
+ 47
2954
+ 49
2955
+ 11
2956
+ 1
2957
+ 25
2958
+ 8
2959
+ 91
2960
+ 15
2961
+ 92
2962
+ 2
2963
+ 27
2964
+ 34
2965
+ 92
2966
+ 1
2967
+ 27
2968
+ 30
2969
+ 8
2970
+ 110
2971
+ 26
2972
+ 45
2973
+ 12
2974
+ 13
2975
+ 49
2976
+ 14
2977
+ 0
2978
+ 49
2979
+ 15
2980
+ 0
2981
+ 15
2982
+ 27
2983
+ 34
2984
+ 45
2985
+ 12
2986
+ 16
2987
+ 49
2988
+ 14
2989
+ 0
2990
+ 49
2991
+ 15
2992
+ 0
2993
+ 15
2994
+ 11
2995
+ I
2996
+ 8
2997
+ I
2998
+ 1
2999
+ I
3000
+ 0
3001
+ I
3002
+ 0
3003
+ I
3004
+ 0
3005
+ n
3006
+ p
3007
+ 17
3008
+ x
3009
+ 18
3010
+ __process_messages
3011
+ x
3012
+ 9
3013
+ ExitEvent
3014
+ n
3015
+ x
3016
+ 3
3017
+ new
3018
+ x
3019
+ 8
3020
+ allocate
3021
+ x
3022
+ 6
3023
+ @proxy
3024
+ x
3025
+ 10
3026
+ initialize
3027
+ x
3028
+ 9
3029
+ __cleanup
3030
+ x
3031
+ 9
3032
+ Exception
3033
+ n
3034
+ x
3035
+ 3
3036
+ ===
3037
+ x
3038
+ 14
3039
+ __handle_crash
3040
+ x
3041
+ 6
3042
+ Thread
3043
+ n
3044
+ x
3045
+ 7
3046
+ current
3047
+ x
3048
+ 4
3049
+ exit
3050
+ n
3051
+ p
3052
+ 27
3053
+ I
3054
+ -1
3055
+ I
3056
+ 99
3057
+ I
3058
+ 0
3059
+ I
3060
+ 9a
3061
+ I
3062
+ 7
3063
+ I
3064
+ a0
3065
+ I
3066
+ e
3067
+ I
3068
+ 9a
3069
+ I
3070
+ 12
3071
+ I
3072
+ 9b
3073
+ I
3074
+ 36
3075
+ I
3076
+ 0
3077
+ I
3078
+ 3b
3079
+ I
3080
+ 9c
3081
+ I
3082
+ 48
3083
+ I
3084
+ 9e
3085
+ I
3086
+ 49
3087
+ I
3088
+ 9c
3089
+ I
3090
+ 4c
3091
+ I
3092
+ 9d
3093
+ I
3094
+ 5b
3095
+ I
3096
+ 0
3097
+ I
3098
+ 62
3099
+ I
3100
+ 9f
3101
+ I
3102
+ 6e
3103
+ I
3104
+ 9f
3105
+ I
3106
+ 79
3107
+ x
3108
+ 48
3109
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
3110
+ p
3111
+ 1
3112
+ x
3113
+ 2
3114
+ ex
3115
+ x
3116
+ 18
3117
+ __process_messages
3118
+ M
3119
+ 1
3120
+ n
3121
+ n
3122
+ x
3123
+ 18
3124
+ __process_messages
3125
+ i
3126
+ 260
3127
+ 44
3128
+ 43
3129
+ 0
3130
+ 78
3131
+ 49
3132
+ 1
3133
+ 1
3134
+ 19
3135
+ 0
3136
+ 15
3137
+ 39
3138
+ 2
3139
+ 9
3140
+ 258
3141
+ 26
3142
+ 93
3143
+ 0
3144
+ 15
3145
+ 29
3146
+ 31
3147
+ 0
3148
+ 39
3149
+ 3
3150
+ 49
3151
+ 4
3152
+ 0
3153
+ 19
3154
+ 1
3155
+ 30
3156
+ 8
3157
+ 106
3158
+ 26
3159
+ 93
3160
+ 1
3161
+ 15
3162
+ 24
3163
+ 13
3164
+ 45
3165
+ 5
3166
+ 6
3167
+ 12
3168
+ 49
3169
+ 7
3170
+ 1
3171
+ 10
3172
+ 48
3173
+ 8
3174
+ 101
3175
+ 15
3176
+ 24
3177
+ 19
3178
+ 2
3179
+ 15
3180
+ 45
3181
+ 8
3182
+ 9
3183
+ 56
3184
+ 10
3185
+ 50
3186
+ 11
3187
+ 0
3188
+ 19
3189
+ 3
3190
+ 15
3191
+ 20
3192
+ 3
3193
+ 49
3194
+ 12
3195
+ 0
3196
+ 19
3197
+ 4
3198
+ 15
3199
+ 20
3200
+ 3
3201
+ 49
3202
+ 13
3203
+ 0
3204
+ 9
3205
+ 94
3206
+ 20
3207
+ 0
3208
+ 20
3209
+ 4
3210
+ 20
3211
+ 3
3212
+ 13
3213
+ 18
3214
+ 3
3215
+ 49
3216
+ 14
3217
+ 2
3218
+ 15
3219
+ 8
3220
+ 95
3221
+ 1
3222
+ 15
3223
+ 8
3224
+ 18
3225
+ 25
3226
+ 8
3227
+ 106
3228
+ 15
3229
+ 92
3230
+ 1
3231
+ 27
3232
+ 34
3233
+ 92
3234
+ 0
3235
+ 27
3236
+ 15
3237
+ 20
3238
+ 1
3239
+ 13
3240
+ 45
3241
+ 15
3242
+ 16
3243
+ 12
3244
+ 49
3245
+ 7
3246
+ 1
3247
+ 9
3248
+ 167
3249
+ 15
3250
+ 45
3251
+ 8
3252
+ 17
3253
+ 56
3254
+ 18
3255
+ 50
3256
+ 11
3257
+ 0
3258
+ 19
3259
+ 3
3260
+ 15
3261
+ 20
3262
+ 3
3263
+ 49
3264
+ 12
3265
+ 0
3266
+ 19
3267
+ 4
3268
+ 15
3269
+ 20
3270
+ 3
3271
+ 49
3272
+ 13
3273
+ 0
3274
+ 9
3275
+ 164
3276
+ 20
3277
+ 0
3278
+ 20
3279
+ 4
3280
+ 20
3281
+ 3
3282
+ 13
3283
+ 18
3284
+ 3
3285
+ 49
3286
+ 14
3287
+ 2
3288
+ 15
3289
+ 8
3290
+ 165
3291
+ 1
3292
+ 8
3293
+ 254
3294
+ 13
3295
+ 45
3296
+ 19
3297
+ 20
3298
+ 12
3299
+ 49
3300
+ 7
3301
+ 1
3302
+ 9
3303
+ 233
3304
+ 15
3305
+ 20
3306
+ 0
3307
+ 20
3308
+ 1
3309
+ 49
3310
+ 21
3311
+ 0
3312
+ 49
3313
+ 22
3314
+ 1
3315
+ 19
3316
+ 3
3317
+ 15
3318
+ 20
3319
+ 3
3320
+ 9
3321
+ 230
3322
+ 20
3323
+ 3
3324
+ 20
3325
+ 1
3326
+ 49
3327
+ 12
3328
+ 1
3329
+ 19
3330
+ 4
3331
+ 15
3332
+ 20
3333
+ 3
3334
+ 49
3335
+ 13
3336
+ 0
3337
+ 9
3338
+ 227
3339
+ 20
3340
+ 0
3341
+ 20
3342
+ 4
3343
+ 20
3344
+ 3
3345
+ 13
3346
+ 18
3347
+ 3
3348
+ 49
3349
+ 14
3350
+ 2
3351
+ 15
3352
+ 8
3353
+ 228
3354
+ 1
3355
+ 8
3356
+ 231
3357
+ 1
3358
+ 8
3359
+ 254
3360
+ 13
3361
+ 45
3362
+ 23
3363
+ 24
3364
+ 12
3365
+ 49
3366
+ 7
3367
+ 1
3368
+ 9
3369
+ 252
3370
+ 15
3371
+ 20
3372
+ 1
3373
+ 5
3374
+ 49
3375
+ 25
3376
+ 1
3377
+ 8
3378
+ 254
3379
+ 15
3380
+ 1
3381
+ 15
3382
+ 68
3383
+ 8
3384
+ 10
3385
+ 1
3386
+ 11
3387
+ I
3388
+ b
3389
+ I
3390
+ 5
3391
+ I
3392
+ 0
3393
+ I
3394
+ 0
3395
+ I
3396
+ 0
3397
+ n
3398
+ p
3399
+ 26
3400
+ x
3401
+ 4
3402
+ Hash
3403
+ x
3404
+ 16
3405
+ new_from_literal
3406
+ x
3407
+ 8
3408
+ @running
3409
+ x
3410
+ 8
3411
+ @mailbox
3412
+ x
3413
+ 7
3414
+ receive
3415
+ x
3416
+ 9
3417
+ ExitEvent
3418
+ n
3419
+ x
3420
+ 3
3421
+ ===
3422
+ x
3423
+ 5
3424
+ Fiber
3425
+ n
3426
+ M
3427
+ 1
3428
+ p
3429
+ 2
3430
+ x
3431
+ 9
3432
+ for_block
3433
+ t
3434
+ n
3435
+ x
3436
+ 18
3437
+ __process_messages
3438
+ i
3439
+ 13
3440
+ 5
3441
+ 48
3442
+ 0
3443
+ 15
3444
+ 5
3445
+ 21
3446
+ 1
3447
+ 2
3448
+ 47
3449
+ 49
3450
+ 1
3451
+ 1
3452
+ 11
3453
+ I
3454
+ 3
3455
+ I
3456
+ 0
3457
+ I
3458
+ 0
3459
+ I
3460
+ 0
3461
+ I
3462
+ 0
3463
+ I
3464
+ -2
3465
+ p
3466
+ 2
3467
+ x
3468
+ 13
3469
+ __init_thread
3470
+ x
3471
+ 19
3472
+ __handle_exit_event
3473
+ p
3474
+ 5
3475
+ I
3476
+ 0
3477
+ I
3478
+ ab
3479
+ I
3480
+ 4
3481
+ I
3482
+ ac
3483
+ I
3484
+ d
3485
+ x
3486
+ 48
3487
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
3488
+ p
3489
+ 0
3490
+ x
3491
+ 3
3492
+ new
3493
+ x
3494
+ 6
3495
+ resume
3496
+ x
3497
+ 6
3498
+ alive?
3499
+ x
3500
+ 3
3501
+ []=
3502
+ x
3503
+ 8
3504
+ SyncCall
3505
+ n
3506
+ n
3507
+ M
3508
+ 1
3509
+ p
3510
+ 2
3511
+ x
3512
+ 9
3513
+ for_block
3514
+ t
3515
+ n
3516
+ x
3517
+ 18
3518
+ __process_messages
3519
+ i
3520
+ 12
3521
+ 5
3522
+ 48
3523
+ 0
3524
+ 15
3525
+ 21
3526
+ 1
3527
+ 1
3528
+ 5
3529
+ 49
3530
+ 1
3531
+ 1
3532
+ 11
3533
+ I
3534
+ 3
3535
+ I
3536
+ 0
3537
+ I
3538
+ 0
3539
+ I
3540
+ 0
3541
+ I
3542
+ 0
3543
+ I
3544
+ -2
3545
+ p
3546
+ 2
3547
+ x
3548
+ 13
3549
+ __init_thread
3550
+ x
3551
+ 8
3552
+ dispatch
3553
+ p
3554
+ 5
3555
+ I
3556
+ 0
3557
+ I
3558
+ b8
3559
+ I
3560
+ 4
3561
+ I
3562
+ b9
3563
+ I
3564
+ c
3565
+ x
3566
+ 48
3567
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
3568
+ p
3569
+ 0
3570
+ x
3571
+ 8
3572
+ Response
3573
+ n
3574
+ x
3575
+ 4
3576
+ call
3577
+ x
3578
+ 6
3579
+ delete
3580
+ x
3581
+ 9
3582
+ AsyncCall
3583
+ n
3584
+ x
3585
+ 8
3586
+ dispatch
3587
+ p
3588
+ 65
3589
+ I
3590
+ -1
3591
+ I
3592
+ a3
3593
+ I
3594
+ 0
3595
+ I
3596
+ a4
3597
+ I
3598
+ a
3599
+ I
3600
+ a6
3601
+ I
3602
+ e
3603
+ I
3604
+ a8
3605
+ I
3606
+ 1f
3607
+ I
3608
+ 0
3609
+ I
3610
+ 24
3611
+ I
3612
+ a9
3613
+ I
3614
+ 31
3615
+ I
3616
+ b3
3617
+ I
3618
+ 32
3619
+ I
3620
+ a9
3621
+ I
3622
+ 35
3623
+ I
3624
+ aa
3625
+ I
3626
+ 40
3627
+ I
3628
+ af
3629
+ I
3630
+ 48
3631
+ I
3632
+ b0
3633
+ I
3634
+ 5f
3635
+ I
3636
+ 0
3637
+ I
3638
+ 60
3639
+ I
3640
+ b2
3641
+ I
3642
+ 6a
3643
+ I
3644
+ 0
3645
+ I
3646
+ 6e
3647
+ I
3648
+ b5
3649
+ I
3650
+ 70
3651
+ I
3652
+ b6
3653
+ I
3654
+ 7b
3655
+ I
3656
+ b7
3657
+ I
3658
+ 86
3659
+ I
3660
+ bc
3661
+ I
3662
+ 8e
3663
+ I
3664
+ bd
3665
+ I
3666
+ a5
3667
+ I
3668
+ 0
3669
+ I
3670
+ a7
3671
+ I
3672
+ be
3673
+ I
3674
+ b2
3675
+ I
3676
+ bf
3677
+ I
3678
+ bf
3679
+ I
3680
+ c1
3681
+ I
3682
+ c3
3683
+ I
3684
+ c2
3685
+ I
3686
+ cd
3687
+ I
3688
+ c3
3689
+ I
3690
+ e4
3691
+ I
3692
+ 0
3693
+ I
3694
+ e6
3695
+ I
3696
+ c1
3697
+ I
3698
+ e7
3699
+ I
3700
+ 0
3701
+ I
3702
+ e9
3703
+ I
3704
+ c5
3705
+ I
3706
+ f4
3707
+ I
3708
+ c6
3709
+ I
3710
+ fd
3711
+ I
3712
+ b5
3713
+ I
3714
+ fe
3715
+ I
3716
+ 0
3717
+ I
3718
+ 104
3719
+ x
3720
+ 48
3721
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
3722
+ p
3723
+ 5
3724
+ x
3725
+ 13
3726
+ pending_calls
3727
+ x
3728
+ 7
3729
+ message
3730
+ x
3731
+ 10
3732
+ exit_event
3733
+ x
3734
+ 5
3735
+ fiber
3736
+ x
3737
+ 4
3738
+ call
3739
+ x
3740
+ 19
3741
+ __handle_exit_event
3742
+ M
3743
+ 1
3744
+ n
3745
+ n
3746
+ x
3747
+ 19
3748
+ __handle_exit_event
3749
+ i
3750
+ 57
3751
+ 5
3752
+ 49
3753
+ 0
3754
+ 0
3755
+ 49
3756
+ 1
3757
+ 0
3758
+ 19
3759
+ 1
3760
+ 15
3761
+ 20
3762
+ 1
3763
+ 9
3764
+ 34
3765
+ 5
3766
+ 20
3767
+ 1
3768
+ 20
3769
+ 0
3770
+ 49
3771
+ 2
3772
+ 0
3773
+ 20
3774
+ 0
3775
+ 49
3776
+ 3
3777
+ 0
3778
+ 47
3779
+ 49
3780
+ 4
3781
+ 3
3782
+ 11
3783
+ 8
3784
+ 35
3785
+ 1
3786
+ 15
3787
+ 20
3788
+ 0
3789
+ 49
3790
+ 3
3791
+ 0
3792
+ 9
3793
+ 55
3794
+ 5
3795
+ 20
3796
+ 0
3797
+ 49
3798
+ 3
3799
+ 0
3800
+ 47
3801
+ 49
3802
+ 5
3803
+ 1
3804
+ 8
3805
+ 56
3806
+ 1
3807
+ 11
3808
+ I
3809
+ 6
3810
+ I
3811
+ 2
3812
+ I
3813
+ 1
3814
+ I
3815
+ 0
3816
+ I
3817
+ 1
3818
+ n
3819
+ p
3820
+ 6
3821
+ x
3822
+ 5
3823
+ class
3824
+ x
3825
+ 12
3826
+ exit_handler
3827
+ x
3828
+ 5
3829
+ actor
3830
+ x
3831
+ 6
3832
+ reason
3833
+ x
3834
+ 4
3835
+ send
3836
+ x
3837
+ 5
3838
+ raise
3839
+ p
3840
+ 17
3841
+ I
3842
+ -1
3843
+ I
3844
+ cc
3845
+ I
3846
+ 0
3847
+ I
3848
+ cd
3849
+ I
3850
+ a
3851
+ I
3852
+ ce
3853
+ I
3854
+ e
3855
+ I
3856
+ cf
3857
+ I
3858
+ 22
3859
+ I
3860
+ ce
3861
+ I
3862
+ 23
3863
+ I
3864
+ 0
3865
+ I
3866
+ 24
3867
+ I
3868
+ d4
3869
+ I
3870
+ 38
3871
+ I
3872
+ 0
3873
+ I
3874
+ 39
3875
+ x
3876
+ 48
3877
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
3878
+ p
3879
+ 2
3880
+ x
3881
+ 10
3882
+ exit_event
3883
+ x
3884
+ 12
3885
+ exit_handler
3886
+ x
3887
+ 14
3888
+ __handle_crash
3889
+ M
3890
+ 1
3891
+ n
3892
+ n
3893
+ x
3894
+ 14
3895
+ __handle_crash
3896
+ i
3897
+ 99
3898
+ 26
3899
+ 93
3900
+ 0
3901
+ 15
3902
+ 29
3903
+ 55
3904
+ 0
3905
+ 5
3906
+ 20
3907
+ 0
3908
+ 47
3909
+ 49
3910
+ 0
3911
+ 1
3912
+ 15
3913
+ 5
3914
+ 45
3915
+ 1
3916
+ 2
3917
+ 13
3918
+ 71
3919
+ 3
3920
+ 47
3921
+ 9
3922
+ 41
3923
+ 47
3924
+ 49
3925
+ 4
3926
+ 0
3927
+ 13
3928
+ 39
3929
+ 5
3930
+ 20
3931
+ 0
3932
+ 47
3933
+ 49
3934
+ 6
3935
+ 2
3936
+ 15
3937
+ 8
3938
+ 48
3939
+ 39
3940
+ 5
3941
+ 20
3942
+ 0
3943
+ 49
3944
+ 3
3945
+ 2
3946
+ 47
3947
+ 49
3948
+ 7
3949
+ 1
3950
+ 30
3951
+ 8
3952
+ 95
3953
+ 26
3954
+ 93
3955
+ 1
3956
+ 15
3957
+ 24
3958
+ 13
3959
+ 45
3960
+ 8
3961
+ 9
3962
+ 12
3963
+ 49
3964
+ 10
3965
+ 1
3966
+ 10
3967
+ 72
3968
+ 8
3969
+ 90
3970
+ 15
3971
+ 24
3972
+ 19
3973
+ 1
3974
+ 15
3975
+ 5
3976
+ 20
3977
+ 1
3978
+ 7
3979
+ 11
3980
+ 64
3981
+ 47
3982
+ 49
3983
+ 0
3984
+ 2
3985
+ 25
3986
+ 8
3987
+ 95
3988
+ 15
3989
+ 92
3990
+ 1
3991
+ 27
3992
+ 34
3993
+ 92
3994
+ 0
3995
+ 27
3996
+ 11
3997
+ I
3998
+ 9
3999
+ I
4000
+ 2
4001
+ I
4002
+ 1
4003
+ I
4004
+ 0
4005
+ I
4006
+ 1
4007
+ n
4008
+ p
4009
+ 12
4010
+ x
4011
+ 11
4012
+ __log_error
4013
+ x
4014
+ 9
4015
+ ExitEvent
4016
+ n
4017
+ x
4018
+ 3
4019
+ new
4020
+ x
4021
+ 8
4022
+ allocate
4023
+ x
4024
+ 6
4025
+ @proxy
4026
+ x
4027
+ 10
4028
+ initialize
4029
+ x
4030
+ 9
4031
+ __cleanup
4032
+ x
4033
+ 9
4034
+ Exception
4035
+ n
4036
+ x
4037
+ 3
4038
+ ===
4039
+ s
4040
+ 22
4041
+ ERROR HANDLER CRASHED!
4042
+ p
4043
+ 19
4044
+ I
4045
+ -1
4046
+ I
4047
+ d8
4048
+ I
4049
+ 0
4050
+ I
4051
+ d9
4052
+ I
4053
+ f
4054
+ I
4055
+ da
4056
+ I
4057
+ 37
4058
+ I
4059
+ 0
4060
+ I
4061
+ 3c
4062
+ I
4063
+ db
4064
+ I
4065
+ 49
4066
+ I
4067
+ dd
4068
+ I
4069
+ 4a
4070
+ I
4071
+ db
4072
+ I
4073
+ 4d
4074
+ I
4075
+ dc
4076
+ I
4077
+ 5f
4078
+ I
4079
+ 0
4080
+ I
4081
+ 63
4082
+ x
4083
+ 48
4084
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
4085
+ p
4086
+ 2
4087
+ x
4088
+ 9
4089
+ exception
4090
+ x
4091
+ 17
4092
+ handler_exception
4093
+ x
4094
+ 9
4095
+ __cleanup
4096
+ M
4097
+ 1
4098
+ n
4099
+ n
4100
+ x
4101
+ 9
4102
+ __cleanup
4103
+ i
4104
+ 14
4105
+ 39
4106
+ 0
4107
+ 49
4108
+ 1
4109
+ 0
4110
+ 15
4111
+ 39
4112
+ 2
4113
+ 20
4114
+ 0
4115
+ 49
4116
+ 3
4117
+ 1
4118
+ 11
4119
+ I
4120
+ 3
4121
+ I
4122
+ 1
4123
+ I
4124
+ 1
4125
+ I
4126
+ 0
4127
+ I
4128
+ 1
4129
+ n
4130
+ p
4131
+ 4
4132
+ x
4133
+ 8
4134
+ @mailbox
4135
+ x
4136
+ 8
4137
+ shutdown
4138
+ x
4139
+ 6
4140
+ @links
4141
+ x
4142
+ 10
4143
+ send_event
4144
+ p
4145
+ 7
4146
+ I
4147
+ -1
4148
+ I
4149
+ e0
4150
+ I
4151
+ 0
4152
+ I
4153
+ e1
4154
+ I
4155
+ 6
4156
+ I
4157
+ e2
4158
+ I
4159
+ e
4160
+ x
4161
+ 48
4162
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
4163
+ p
4164
+ 1
4165
+ x
4166
+ 10
4167
+ exit_event
4168
+ x
4169
+ 11
4170
+ __log_error
4171
+ M
4172
+ 1
4173
+ n
4174
+ n
4175
+ x
4176
+ 11
4177
+ __log_error
4178
+ i
4179
+ 88
4180
+ 23
4181
+ 1
4182
+ 10
4183
+ 18
4184
+ 5
4185
+ 49
4186
+ 0
4187
+ 0
4188
+ 47
4189
+ 101
4190
+ 1
4191
+ 7
4192
+ 2
4193
+ 63
4194
+ 2
4195
+ 19
4196
+ 1
4197
+ 15
4198
+ 20
4199
+ 1
4200
+ 7
4201
+ 3
4202
+ 20
4203
+ 0
4204
+ 49
4205
+ 0
4206
+ 0
4207
+ 47
4208
+ 101
4209
+ 1
4210
+ 7
4211
+ 4
4212
+ 20
4213
+ 0
4214
+ 49
4215
+ 1
4216
+ 0
4217
+ 47
4218
+ 101
4219
+ 1
4220
+ 7
4221
+ 3
4222
+ 63
4223
+ 5
4224
+ 49
4225
+ 5
4226
+ 1
4227
+ 15
4228
+ 20
4229
+ 1
4230
+ 20
4231
+ 0
4232
+ 49
4233
+ 6
4234
+ 0
4235
+ 7
4236
+ 3
4237
+ 64
4238
+ 49
4239
+ 7
4240
+ 1
4241
+ 49
4242
+ 5
4243
+ 1
4244
+ 15
4245
+ 45
4246
+ 8
4247
+ 9
4248
+ 49
4249
+ 10
4250
+ 0
4251
+ 9
4252
+ 86
4253
+ 45
4254
+ 8
4255
+ 11
4256
+ 49
4257
+ 10
4258
+ 0
4259
+ 20
4260
+ 1
4261
+ 49
4262
+ 12
4263
+ 1
4264
+ 8
4265
+ 87
4266
+ 1
4267
+ 11
4268
+ I
4269
+ 8
4270
+ I
4271
+ 2
4272
+ I
4273
+ 1
4274
+ I
4275
+ 0
4276
+ I
4277
+ 2
4278
+ n
4279
+ p
4280
+ 13
4281
+ x
4282
+ 5
4283
+ class
4284
+ x
4285
+ 4
4286
+ to_s
4287
+ s
4288
+ 9
4289
+ crashed!
4290
+ s
4291
+ 1
4292
+
4293
+
4294
+ s
4295
+ 2
4296
+ :
4297
+ x
4298
+ 2
4299
+ <<
4300
+ x
4301
+ 9
4302
+ backtrace
4303
+ x
4304
+ 4
4305
+ join
4306
+ x
4307
+ 9
4308
+ Celluloid
4309
+ n
4310
+ x
4311
+ 6
4312
+ logger
4313
+ n
4314
+ x
4315
+ 5
4316
+ error
4317
+ p
4318
+ 11
4319
+ I
4320
+ -1
4321
+ I
4322
+ e7
4323
+ I
4324
+ 12
4325
+ I
4326
+ e8
4327
+ I
4328
+ 30
4329
+ I
4330
+ e9
4331
+ I
4332
+ 41
4333
+ I
4334
+ ea
4335
+ I
4336
+ 57
4337
+ I
4338
+ 0
4339
+ I
4340
+ 58
4341
+ x
4342
+ 48
4343
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
4344
+ p
4345
+ 2
4346
+ x
4347
+ 2
4348
+ ex
4349
+ x
4350
+ 7
4351
+ message
4352
+ p
4353
+ 17
4354
+ I
4355
+ 2
4356
+ I
4357
+ 83
4358
+ I
4359
+ 10
4360
+ I
4361
+ 92
4362
+ I
4363
+ 1e
4364
+ I
4365
+ 99
4366
+ I
4367
+ 2c
4368
+ I
4369
+ a3
4370
+ I
4371
+ 3a
4372
+ I
4373
+ cc
4374
+ I
4375
+ 48
4376
+ I
4377
+ d8
4378
+ I
4379
+ 56
4380
+ I
4381
+ e0
4382
+ I
4383
+ 64
4384
+ I
4385
+ e7
4386
+ I
4387
+ 72
4388
+ x
4389
+ 48
4390
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
4391
+ p
4392
+ 0
4393
+ x
4394
+ 8
4395
+ included
4396
+ M
4397
+ 1
4398
+ n
4399
+ n
4400
+ x
4401
+ 8
4402
+ included
4403
+ i
4404
+ 42
4405
+ 20
4406
+ 0
4407
+ 45
4408
+ 0
4409
+ 1
4410
+ 49
4411
+ 2
4412
+ 1
4413
+ 15
4414
+ 20
4415
+ 0
4416
+ 7
4417
+ 3
4418
+ 45
4419
+ 4
4420
+ 5
4421
+ 49
4422
+ 6
4423
+ 2
4424
+ 15
4425
+ 20
4426
+ 0
4427
+ 7
4428
+ 3
4429
+ 45
4430
+ 7
4431
+ 8
4432
+ 49
4433
+ 6
4434
+ 2
4435
+ 15
4436
+ 20
4437
+ 0
4438
+ 7
4439
+ 3
4440
+ 45
4441
+ 9
4442
+ 10
4443
+ 49
4444
+ 6
4445
+ 2
4446
+ 11
4447
+ I
4448
+ 4
4449
+ I
4450
+ 1
4451
+ I
4452
+ 1
4453
+ I
4454
+ 0
4455
+ I
4456
+ 1
4457
+ n
4458
+ p
4459
+ 11
4460
+ x
4461
+ 12
4462
+ ClassMethods
4463
+ n
4464
+ x
4465
+ 6
4466
+ extend
4467
+ x
4468
+ 7
4469
+ include
4470
+ x
4471
+ 15
4472
+ InstanceMethods
4473
+ n
4474
+ x
4475
+ 4
4476
+ send
4477
+ x
4478
+ 15
4479
+ InternalMethods
4480
+ n
4481
+ x
4482
+ 7
4483
+ Linking
4484
+ n
4485
+ p
4486
+ 11
4487
+ I
4488
+ -1
4489
+ I
4490
+ ee
4491
+ I
4492
+ 0
4493
+ I
4494
+ ef
4495
+ I
4496
+ 9
4497
+ I
4498
+ f0
4499
+ I
4500
+ 14
4501
+ I
4502
+ f1
4503
+ I
4504
+ 1f
4505
+ I
4506
+ f2
4507
+ I
4508
+ 2a
4509
+ x
4510
+ 48
4511
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
4512
+ p
4513
+ 1
4514
+ x
4515
+ 5
4516
+ klass
4517
+ p
4518
+ 11
4519
+ I
4520
+ 2
4521
+ I
4522
+ 30
4523
+ I
4524
+ a
4525
+ I
4526
+ 33
4527
+ I
4528
+ 24
4529
+ I
4530
+ 62
4531
+ I
4532
+ 3e
4533
+ I
4534
+ 81
4535
+ I
4536
+ 58
4537
+ I
4538
+ ee
4539
+ I
4540
+ 63
4541
+ x
4542
+ 48
4543
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
4544
+ p
4545
+ 0
4546
+ p
4547
+ 13
4548
+ I
4549
+ 2
4550
+ I
4551
+ 10
4552
+ I
4553
+ f
4554
+ I
4555
+ 13
4556
+ I
4557
+ 1c
4558
+ I
4559
+ 16
4560
+ I
4561
+ 39
4562
+ I
4563
+ 20
4564
+ I
4565
+ 44
4566
+ I
4567
+ 25
4568
+ I
4569
+ 4f
4570
+ I
4571
+ 2f
4572
+ I
4573
+ 69
4574
+ x
4575
+ 48
4576
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
4577
+ p
4578
+ 0
4579
+ x
4580
+ 13
4581
+ attach_method
4582
+ p
4583
+ 23
4584
+ I
4585
+ 0
4586
+ I
4587
+ 1
4588
+ I
4589
+ 9
4590
+ I
4591
+ 4
4592
+ I
4593
+ 1b
4594
+ I
4595
+ 0
4596
+ I
4597
+ 20
4598
+ I
4599
+ 5
4600
+ I
4601
+ 2d
4602
+ I
4603
+ c
4604
+ I
4605
+ 2e
4606
+ I
4607
+ 5
4608
+ I
4609
+ 31
4610
+ I
4611
+ 7
4612
+ I
4613
+ 4e
4614
+ I
4615
+ 8
4616
+ I
4617
+ 5b
4618
+ I
4619
+ a
4620
+ I
4621
+ 62
4622
+ I
4623
+ 0
4624
+ I
4625
+ 6e
4626
+ I
4627
+ e
4628
+ I
4629
+ 8a
4630
+ x
4631
+ 48
4632
+ /Users/tony/src/celluloid/lib/celluloid/actor.rb
4633
+ p
4634
+ 1
4635
+ x
4636
+ 2
4637
+ ex