summary refs log blame commit diff stats
path: root/tests/parallel/tarray_of_channels.nim
blob: 9479227aac2a723fc52aa1626a5b120db83c6ed5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                
                   

   


                 
                                    



















                                                         
          
        
discard """
sortoutput: true
output: '''
(x: 0.0)
(x: 0.0)
(x: 0.0)
test
test
test
'''
disabled: "openbsd"
"""

# bug #2257
import threadpool

type StringChannel = Channel[string]
var channels: array[1..3, StringChannel]

type
  MyObject[T] = object
    x: T

var global: MyObject[string]
var globalB: MyObject[float]

proc consumer(ix : int) {.thread.} =
  echo channels[ix].recv() ###### not GC-safe: 'channels'
  echo globalB

proc main =
  for ix in 1..3: channels[ix].open()
  for ix in 1..3: spawn consumer(ix)
  for ix in 1..3: channels[ix].send("test")
  sync()
  for ix in 1..3: channels[ix].close()

when true:
  main()