• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..14-Nov-2013104

ChangeLogH A D29-Jul-2010627

fifo.manH A D29-Jul-20101.6 KiB

fifo.tclH A D01-Dec-20093 KiB

fifo2.manH A D29-Jul-20101.9 KiB

fifo2.tclH A D01-Dec-20092.6 KiB

halfpipe.manH A D29-Jul-20102.8 KiB

halfpipe.tclH A D01-Dec-20093.7 KiB

memchan.manH A D29-Jul-20101.6 KiB

memchan.tclH A D01-Dec-20094.2 KiB

null.manH A D29-Jul-20101.6 KiB

null.tclH A D01-Dec-20091.4 KiB

nullzero.manH A D29-Jul-20101.5 KiB

nullzero.tclH A D01-Dec-20091.6 KiB

pkgIndex.tclH A D01-Dec-20091.1 KiB

random.manH A D29-Jul-20101.7 KiB

random.tclH A D01-Dec-20091.9 KiB

randseed.manH A D29-Jul-20101.5 KiB

randseed.tclH A D01-Dec-20091.3 KiB

README.txtH A D01-Dec-2009668

string.manH A D29-Jul-20101.6 KiB

string.tclH A D01-Dec-20093.1 KiB

textwindow.manH A D29-Jul-20101.4 KiB

textwindow.tclH A D01-Dec-20091.9 KiB

variable.manH A D29-Jul-20101.7 KiB

variable.tclH A D01-Dec-20094.3 KiB

zero.manH A D29-Jul-20101.6 KiB

zero.tclH A D01-Dec-20091.3 KiB

README.txt

1null, zero, fifo, memchan, fifo2
2
3	Re-implementations of Memchan's channel types.
4
5random
6
7	Semi re-implementation of a Memchan channel type.
8	"Random" byte generator, simple feedback register.
9	Memchan uses ISAAC (http://burtleburtle.net/bob/rand/isaacafa.html).
10
11string, variable
12
13	Variants of 'memchan', with fixed content, and the content
14	factored out to a namespaced variable, respectively.
15
16randomseed
17
18	Support to generate and combine seed lists for the
19	random channel, using semi-random sources in Tcl.
20
21halfpipe
22
23	Half channel, simpler callback API. fifo2 is build on top this
24	basic block.
25
26textwindow
27
28	Channel attaches to text widget to write data into.
29