I have the same intermittent problem. I can run "apl" several times without
any glitch
but once I have the glitch it always give me "WS FULL" (until reboot I guess).
[xtian@Fedora:/home/xtian] $ apl --noCONT
______ _ __ __ __ ___ ____ __
/ ____// | / // / / / / | / __ \ / /
/ / __ / |/ // / / / / /| | / /_/ // /
/ /_/ // /| // /_/ / / ___ | / ____// /___
\____//_/ |_/ \____/ /_/ |_|/_/ /_____/
Welcome to GNU APL version 1.7 / 1114M
Copyright (C) 2008-2016 Dr. Jürgen Sauermann
Banner by FIGlet: www.figlet.org
This program comes with ABSOLUTELY NO WARRANTY;
for details run: apl --gpl.
This program is free software, and you are welcome to redistribute it
according to the GNU Public License (GPL) version 3 or later.
⎕WA
81085880
T←1 2 3
throwing WS FULL at Value.hh:911
----------------------------------------
-- Stack trace at Error.cc:187
----------------------------------------
0x7FE9E4BF511B __libc_start_main
0x466235 main
0x5E0E35 Workspace::immediate_execution(bool)
0x4B66FA Command::process_line()
0x4B6F0D Command::do_APL_expression(UCS_string&)
0x4B67DF Command::finish_context()
0x4C1CB8 Executable::execute_body() const
0x579C96 StateIndicator::run()
0x504CA9 Prefix::reduce_statements()
0x4FE5C7 Prefix::reduce_V_ASS_B_()
0x58CCC0 Symbol::assign(Value_P, bool, char const*)
0x5DDF49 Value::clone(char const*) const
0x4C115C throw_apl_error(ErrorCode, char const*)
========================================
WS FULL
T←1 2 3
^^
[xtian@Fedora:/home/xtian] $ cat /proc/meminfo
MemTotal: 1989104 kB
MemFree: 95256 kB
MemAvailable: 855220 kB
Buffers: 90568 kB
Cached: 760592 kB
SwapCached: 1460 kB
Active: 1097196 kB
Inactive: 522340 kB
Active(anon): 592532 kB
Inactive(anon): 177312 kB
Active(file): 504664 kB
Inactive(file): 345028 kB
Unevictable: 0 kB
Mlocked: 0 kB
SwapTotal: 1679356 kB
SwapFree: 1670652 kB
Dirty: 3144 kB
Writeback: 0 kB
AnonPages: 767388 kB
Mapped: 298132 kB
Shmem: 1472 kB
Slab: 179896 kB
SReclaimable: 83020 kB
SUnreclaim: 96876 kB
KernelStack: 9232 kB
PageTables: 61080 kB
NFS_Unstable: 0 kB
Bounce: 0 kB
WritebackTmp: 0 kB
CommitLimit: 2673908 kB
Committed_AS: 4414764 kB
VmallocTotal: 34359738367 kB
VmallocUsed: 0 kB
VmallocChunk: 0 kB
Percpu: 1776 kB
HardwareCorrupted: 0 kB
AnonHugePages: 0 kB
ShmemHugePages: 0 kB
ShmemPmdMapped: 0 kB
CmaTotal: 0 kB
CmaFree: 0 kB
HugePages_Total: 0
HugePages_Free: 0
HugePages_Rsvd: 0
HugePages_Surp: 0
Hugepagesize: 2048 kB
Hugetlb: 0 kB
DirectMap4k: 169920 kB
DirectMap2M: 1878016 kB
On 2019-01-21 10:26, Dr. Jürgen Sauermann wrote:
Hi,
could you please do the following (without any intervening steps):
1, show memory information:
*cat /proc/meminfo*
2. start apl with -l 37:
*apl -l **37*
3, Display workspace available:
* ⎕WA*
Thanks,
/// Jürgen
PS. I am currently recovering from an eye surgery, which
slows me down a lot when reading or writing emails or code.
Please be patient until I am up to speed again.
On 01/16/2019 07:05 PM, Hudson Flavio Meneses Lacerda wrote:
Some info:
x86 32bit
Debian Jessie
GCC 4.9.2
Build command:
DYNAMIC_LOG_WANTED='yes' \
CXX_WERROR='no' \
./configure \
--with-gtk3 \
--with-pcre
make
sudo make install
On Wed, 16 Jan 2019 15:58:18 -0200
Hudson Flavio Meneses Lacerda<hud...@hudsonlacerda.com> wrote:
Hi.
I tried the newest trunk version (1114), but the program shows this
strange behaviour:
--------...
This program is free software, and you are welcome to
redistribute it according to the GNU Public License (GPL) version 3
or later.
a← 2 3 4
WS FULL
a←2 3 4
^^
a ← 2 3 4
WS FULL
a←2 3 4
^^
x ← 2 3 4
WS FULL
x←2 3 4
^^
z ← ⍳3
a ← ⍳3
a ← 3 4 2
WS FULL
a←3 4 2
^^
a
WS FULL
a
^
z
WS FULL
z
^
x
VALUE ERROR
x
^
--------
Hudson