본문으로 바로가기

memchan 2.3

category Tcl & Tk/확장 패키지 (Extension Package) 2025. 8. 26. 09:43

홈페이지 : http://sourceforge.net/projects/memchan

Memchan은 Tcl 확장 모듈로, 메모리 채널, FIFO, null 채널 및 랜덤 채널을 포함한 다양한 새로운 채널 유형을 제공합니다.

 

Memory Channels in Tcl
(Version 2.3 / DEC-10-2010)

Andreas Kupries (andreas_kupries@users.sourceforge.net)

This directory contains a freely distributable extension to Tcl
implementing memory channels, i.e. channels storing the data
placed into them in memory, not on disk.

BACKGROUND

Tcl stands for the Tool Command Language, a freely distributable,
embeddable scripting language package.  Tk is an freely distributable X
windows interface toolkit and widget library implemented as a collection of
new commands added to Tcl.

Memchan 2.3 is developed for Tcl 8.0 or higher.  It is a Tcl
extension, Tk is not required.

This distribution contains the source code for Memchan + (very simple)
documentation describing the new command.
Memchan should be available by anonymous ftp from ftp.neosoft.com soon.

COMPILING/USING Memchan

To compile Memchan follow the instructions in the file README.install

To report bugs, bug fixes, descriptions of interesting Memchan
applications, and suggested improvements:

+) Send email to andreas_kupries@users.sourceforge.net
or
+) Post an article to the newsgroup comp.lang.tcl

EXAMPLE

set m [memchan]
puts -nonewline $m {hello world!}
set res [list [fconfigure $m -length] [tell $m]]
seek $m 0
lappend res [read $m]
close $m
set res

REPORTING PROBLEMS

This extension has been tested extensively on a number of platforms and with
various versions of Tcl. If you find a problem and can reproduce it simply
then please submit a bug report on the memchan sourceforge project at
http://sourceforge.net/projects/memchan/

Memchan2.3.tar.gz
1.70MB

'Tcl & Tk > 확장 패키지 (Extension Package)' 카테고리의 다른 글

BigFloat for Tcl 1.1b1  (0) 2025.08.26
e4Graph 1.0a11  (0) 2025.08.26
VecTcl 0.3  (0) 2025.08.19
Tcl3D 1.0.1  (0) 2025.08.18
BLT 2.5.3  (0) 2025.08.18