Who's Online |
77 user(s) are online ( 50 user(s) are browsing Forums)
Members: 1
Guests: 76
MickJT,
more...
|
|
Headlines |
-
rave.lha - audio/edit
Feb 8, 2026
-
libxmp.lha - development/library/audio
Feb 8, 2026
-
videovortex.lha - video/play
Feb 8, 2026
-
vintagesongplayer.lha - audio/play
Feb 5, 2026
-
libsdl3_gfx.lha - development/library/graphics
Feb 5, 2026
-
libsdl3_image.lha - development/library/graphics
Feb 5, 2026
-
libsdl3_ttf.lha - development/library/graphics
Feb 5, 2026
-
amiarcadia.lha - emulation/gamesystem
Feb 5, 2026
-
yt.lha - video/misc
Feb 5, 2026
-
wbkillwin.lha - development/misc
Feb 2, 2026
|
|
|
|
|
Re: Bug on Makedir command (Enhancer)
|
Posted on: 2025/9/3 10:56
#21
|
Just popping in 
|
@smf
Thanks a lot. Yes, this seems to be the same issue. But the SDL3 installer is no longer using a trailing '/' for creating the directories so I could not reproduce the issue by installing SDL3.
Let's see if we ever see an update by amigakit.
|
|
|
|
|
|
Re: Bug on Makedir command (Enhancer)
|
Posted on: 2025/9/3 9:27
#22
|
Just popping in 
|
@samo79:
I have MakeDir 54.11 (28.07.2022) from Enhancer, and SYS:Documentation/SDL3 is created just fine for when installing SDL3.
What version of MakeDir do you have?
|
|
|
|
|
|
Re: infinite icons theme pack
|
Posted on: 2025/7/27 11:03
#23
|
Just popping in 
|
@nbache
Thanks for the suggestion! I actually tried using FOREACH, but I couldn't get it to work recursively across subdirectories based on a pattern. To make it viable, I’d need to first feed it the output from a LIST command anyway. So at that point, I don’t see a clear advantage over just sticking with LIST and EXECUTE directly.
|
|
|
|
|
|
Re: infinite icons theme pack
|
Posted on: 2025/7/26 18:42
#24
|
Just popping in 
|
Detailed steps to resize PNG icons on AmigaOS 4.1:1. Save this script as s:resize.py
#!/usr/bin/env python
import sys
import re
import StringIO
from PIL import Image
def find_pngs(file_path):
f = open(file_path, 'rb')
try:
content = f.read()
finally:
f.close()
png_header = '\x89PNG\r\n\x1a\n'
positions = []
index = 0
while True:
index = content.find(png_header, index)
if index == -1:
break
positions.append(index)
index += 1
images = []
for i in range(len(positions)):
start = positions[i]
end = positions[i + 1] if i + 1 < len(positions) else len(content)
images.append(content[start:end])
return images
def resize_and_export(png_bytes, size=(64, 64)):
image = Image.open(StringIO.StringIO(png_bytes))
resized = image.resize(size, Image.ANTIALIAS)
output = StringIO.StringIO()
resized.save(output, format='PNG')
return output.getvalue()
def process_and_concat(input_file, output_file, size=(64, 64)):
png_raw_data = find_pngs(input_file)
concatenated = ''
for png in png_raw_data:
small_png = resize_and_export(png, size)
concatenated += small_png
f = open(output_file, 'wb')
try:
f.write(concatenated)
finally:
f.close()
def main():
if len(sys.argv) < 2:
print "Usage: python convert.py <input_file> [width height]"
sys.exit(1)
input_path = sys.argv[1]
if len(sys.argv) >= 4:
width = int(sys.argv[2])
height = int(sys.argv[3])
size = (width, height)
else:
size = (64, 64)
process_and_concat(input_path, input_path, size)
if __name__ == "__main__":
main()
2. Install PIL ( https://os4depot.net/share/development/library/misc/pil.lha) 2a. Extract to RAM 2b. Execute RAM:PIL/Install_PIL 3. Create a script that calls s:resize.py on each #?.info file. Execute in Shell in the directory containing the info files:
LIST PAT=#?.info ALL FILES TO t:resize_all LFORMAT="python s:resize.py *"%P%N*" 64 64"
3.a (Optional) Check the t:resize_all script in an editor 4. Execute created script in the same Shell:
EXECUTE T:resize_all
EDIT: Please note the *" around %P%N. It is needed because the Path/filenames might contain spaces.
Edited by FlynnTheAvatar on 2025/7/26 19:28:07 Edited by FlynnTheAvatar on 2025/7/26 19:39:58
|
|
|
|
|
|
Re: infinite icons theme pack
|
Posted on: 2025/7/26 18:42
#25
|
Just popping in 
|
@DigitalDesigns
I am working on a version that works on Amiga OS 4.1. The initial script uses a few features that are not available on Python 2.5. The script is ready, but you need to install PIL from os4depot to make the script work.
Additionally, I need to figure out an easy way to call the script on each file. I keep you updated and I will provide steps how to do the conversion on AmigaOS.
|
|
|
|
|
|
Re: infinite icons theme pack
|
Posted on: 2025/7/26 16:11
#26
|
Just popping in 
|
@DigitalDesigns The script is something I created with the help of CoPilot in a few minutes. It scans a given file, extracts all the embedded PNGs, resizes them to a specified dimension (default: 64×64), and writes them back as a single binary blob. It was built with Python 3 and runs on Linux. You can pass in a custom size via the --size argument, and note: it overwrites the input file, so make a backup if needed. I don’t take credit for the idea — feel free to tweak and use it however you like:
#!/bin/env python3
import argparse
from PIL import Image
import io
import re
def find_pngs(file_path):
with open(file_path, 'rb') as f:
content = f.read()
# PNG file starts with this header
png_header = b'\x89PNG\r\n\x1a\n'
# Find all positions in the binary stream where the header occurs
positions = [m.start() for m in re.finditer(re.escape(png_header), content)]
images = []
for i in range(len(positions)):
start = positions[i]
end = positions[i + 1] if i + 1 < len(positions) else len(content)
images.append(content[start:end])
return images
def resize_and_export(png_bytes, size=(64, 64)):
image = Image.open(io.BytesIO(png_bytes))
resized = image.resize(size, Image.LANCZOS)
output = io.BytesIO()
resized.save(output, format='PNG')
return output.getvalue()
def process_and_concat(input_file, output_file, size=(64, 64)):
png_raw_data = find_pngs(input_file)
concatenated = b''
for i, png in enumerate(png_raw_data):
small_png = resize_and_export(png, size)
concatenated += small_png
with open(output_file, 'wb') as f:
f.write(concatenated)
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="Resizes PNG images in a file and concatenates them in binary form."
)
parser.add_argument(
"input",
help="Path to the input file containing embedded PNGs"
)
parser.add_argument(
"--size",
type=int,
nargs=2,
default=[64, 64],
help="Target size (width height)"
)
args = parser.parse_args()
process_and_concat(args.input, args.input, tuple(args.size))
Usage Example — Convert all .info files in the current directory:
find . -name '*.info' -exec ./convert.py --size 64 64 {} \;
Let me know if you find it useful, or have ideas for enhancements!
|
|
|
|
|
|
Re: infinite icons theme pack
|
Posted on: 2025/7/26 9:02
#27
|
Just popping in 
|
@DigitalDesigns
First off, I recently purchased your Icon Pack and… wow. It's absolutely spectacular! Beautiful work!
Based on Maijestro’s feedback, I think he might be referring to a few things:
- Missing Emulation drawer in the Workbench setup - Lack of icons for APPDIR, PIPE, and URL DOSDrivers
You've created a fantastic variety of custom Utilities drawers, but there are no icons for commonly used apps like: - AmiPDF - AmiUpdate - AmiGS - and more...
Some minor suggestions:
It’d be great to have a DataTypes folder with matching icons, similar to your DOSTypes drawer
And a few wishlist items for future updates (if you’re taking requests 😉): - Filer drawer + app icon - RunInUAE drawer + app icon - Emulation Floppy drawer - Emulation CinemawareGames drawer - IMP3 drawer + app icon
Thanks again for such a visually rich and thoughtful pack — these icons would really look great on my Workbench!
BTW: I have a small Python script that splits your PNG icons, resize the individual images to 64x64 (configurable) and concatenates them again. The 256x256 are really detailed, but loading a lot of them (e.g. when opening Prefs drawer) takes a lot more time.
|
|
|
|
|
|
Re: Strange freezes with AmigaGuide documents
|
Posted on: 2025/7/26 8:48
#28
|
Just popping in 
|
@nbache
Thank you very much for the update.
I found the first mentioning of this bug from 2011. So it is best not to hold my breath until it is finally fixed.
|
|
|
|
|
|
Re: Strange freezes with AmigaGuide documents
|
Posted on: 2025/7/25 5:47
#29
|
Just popping in 
|
@nbache
You're right—the initial AmigaGuide document does contain multiple links to external files.
The file that triggers the crash is a basic text file with no further links. Interestingly, it only crashes when accessed via one of the links in the original AmigaGuide document—not when opened directly.
I hope that helps clarify the issue.
If this aligns with the known bug, would you happen to know when a fix might be expected? Thanks again!
|
|
|
|
|
|
Strange freezes with AmigaGuide documents
|
Posted on: 2025/7/24 14:03
#30
|
Just popping in 
|
Hi,
I have strange issues when viewing large AmigaGuide documents on my X5000 with MultiView.
Resizing an AmigaGuide document displayed in MultiView freezes AmigaOS's GUI. The OS is not completely dead as TuneNet is still playing.
There is no GrimReaper and no output on Serial.
The easiest way for me to reproduce the freeze is to open "Includes_and_Autodocs_2.0" from Amiga Developer CD 2.1 and go to "Includes (dir)" -> "hardware (dir)" -> "cia.i" and resize the window.
MultiViewer also randomly freezes the system when working with AmigaGuide files. But I normally do not use MultiViewer, and I did not find a sure way to reproduce the freezes yet.
The files MultiView and DataTypes/AmigaGuide are the same as the ones from Update 2 archive.
System details: AmigaOne X5000/20 8 GB RAM 240 + 120 GB SSD Radeon RX 550 ESI @Julia SIL 3512
AmigaOS 4.1 Update 2 + Enhancer V2.2
Any ideas?
Thank you, Flynn
|
|
|
|
|
|
Re: AmigaOS port of libsmb2
|
Posted on: 2025/6/19 15:15
#31
|
Just popping in 
|
@salass00
Yes, now compiling with Bebbo's GCC 6.5.0b works fine.
Thanks a lot for fixing!
|
|
|
|
|
|
Re: AmigaOS port of libsmb2
|
Posted on: 2025/6/13 15:58
#32
|
Just popping in 
|
@salass00
Thank you very much for the latest version.
Just one question regarding the AmigaOS3 version: what compiler do you use for the AmigaOS3 version? I tried Bebbo's gcc 6 on Linux, but it failed to link because of a missing exit() definition.
|
|
|
|
|
|
Re: Dear ImGui
|
Posted on: 2025/3/1 9:24
#33
|
Just popping in 
|
@Capehill
Does this mean we could have Aira Force also running on AmigaOS4?
|
|
|
|
|
|
Re: X5000 optimized code compile
|
Posted on: 2025/2/28 15:42
#34
|
Just popping in 
|
@walkero
Thinking about it, it might be more likely that this is an issue with GNU as. It is part of binutils that is rather old. Maybe the old version does not support all PPC assembler commands?
|
|
|
|
|
|
Re: X5000 optimized code compile
|
Posted on: 2025/2/28 12:14
#35
|
Just popping in 
|
@afxgroup I am using the lastest gcc (native) version provided by Walkero:
gcc -v
Using built-in specs.
COLLECT_GCC=/Work/Cubic IDE/ide/devkits/sdk/amigaos4/54.16/gcc/ppc-amigaos/bin/11.3.0/gcc
COLLECT_LTO_WRAPPER=/Work/Cubic\ IDE/ide/devkits/sdk/amigaos4/54.16/gcc/ppc-amigaos/bin/11.3.0/../libexec/gcc/ppc-amigaos/11.3.0/lto-wrapper
Target: ppc-amigaos
Configured with: /opt/adtools/gcc/repo/configure --with-bugurl=https://github.com/sba1/adtools/issues --with-pkgversion='adtools build 11.3.0' --host=ppc-amigaos --target=ppc-amigaos --disable-nls --prefix=/gcc --with-gmp=/opt/adtools/native-build/root-cross --with-mpfr=/opt/adtools/native-build/root-cross --with-mpc=/opt/adtools/native-build/root-cross --program-prefix=ppc-amigaos- --program-suffix=-11 --libexecdir=/gcc/libexec --enable-languages=c,c++ --enable-haifa --enable-sjlj-exceptions --disable-libstdcxx-pch --disable-tls --enable-threads=amigaos --enable-lto --disable-c++tools
Thread model: amigaos
Supported LTO compression algorithms: zlib
gcc version 11.3.0 (adtools build 11.3.0)
|
|
|
|
|
|
Re: X5000 optimized code compile
|
Posted on: 2025/2/28 8:02
#36
|
Just popping in 
|
Sadly, the X5000 options do not work for E-UAE. I used these flags: CFLAGS="-O3 -mcpu=e5500 -mno-altivec -mno-powerpc64 -gstabs" At the end I got these error messages:
/T/cc1PpXo7.s: Assembler messages:
/T/cc1PpXo7.s:28739: Error: unrecognized opcode: `mcrxr'
/T/cc1PpXo7.s:28997: Error: unrecognized opcode: `mcrxr'
...
Any ideas what else is needed to make the assembler work? Thanks, Josef
|
|
|
|
|
|
Re: MOD replay in IMP3 freezes OS4
|
Posted on: 2025/2/27 19:04
#37
|
Just popping in 
|
@balaton
Yes, the ptreplay library is still a prime suspect. But I do not know why the (almost) same code is stable on Morphos but crashes on AmigaOS4.
I need to disable more of the library to see if I can see what triggers the corruptions.
Still having an idea what kernel/DOS/Exec function crashes would immensely speed up the troubleshooting.
And AmiDock and/or the CPUInfo dockie have an influence how fast the crashes appear. Without AmiDock I could play Mods for about 10 hours before it crashed.
|
|
|
|
|
|
Re: MOD replay in IMP3 freezes OS4
|
Posted on: 2025/2/24 8:20
#38
|
Just popping in 
|
@msteed
Thank you for you input. No, IMP3 is not interacting with AmiDock. It is a m68k assembler application, so it is not aware of AmiDock at all. And this makes debugging the whole thing so much harder.
|
|
|
|
|
|
Re: MOD replay in IMP3 freezes OS4
|
Posted on: 2025/2/23 14:36
#39
|
Just popping in 
|
Okay, I captured another crash with the debug kernel, but it does not contain any new information (at least not for me). No information about what kernel method crashed:
[HAL_DfltTrapHandler] *** Warning: Fatal exception in task 0x6919FC30 (AmiDock, etask = 0xEFEC8600) at ip 0x0183B008
kernel 54.30 (1.1.2021) AmigaOne X5000 debug
Machine model: 9 (AmigaOne X5000/20)
Dump of context at 0xEFE33000
Trap type: DSI exception
DSISR: 00800000 DAR: CCCCCCD0
No matching page found
Machine State (raw): 0x0002F030
Machine State (verbose): [Critical Ints on] [ExtInt on] [User] [IAT on] [DAT on]
Instruction pointer: in module kernel.debug+0x0003B008 (0x0183B008)
Crashed process: AmiDock (0x6919FC30)
DSI verbose error description: Access to address 0xCCCCCCD0 not allowed by page protection in user state (protection violation)
Access was a store operation
Exception Syndrome Register: 0x00800000
0: 0184AD54 69BBEEE0 00000002 0220A968 6B68F9D0 0002F030 0236BDCC 0236BE3C
8: CCCCCCCC CCCCCCCC CCCCCCCC 00007428 AA020000 6C11C9F4 6C110000 00000000
16: 00000001 02410000 00000017 00000031 6FFA4070 0200B4CC 0200B4AC 0200B4E4
24: 020000A0 0200B2E4 6919F1B0 02200000 0184AD54 02200000 0220A968 6B68F9D0
CR: 28244824 XER: 00000078 CTR: 0183AF94 LR: 0184AD54
Disassembly of crash site:
0183AFF8: 815F0000 lwz r10,0(r31)
0183AFFC: 3D20CCCC lis r9,-13108
0183B000: 811F0004 lwz r8,4(r31)
0183B004: 6129CCCC ori r9,r9,52428
>0183B008: 910A0004 stw r8,4(r10)
0183B00C: 815F0004 lwz r10,4(r31)
0183B010: 811F0000 lwz r8,0(r31)
0183B014: 910A0000 stw r8,0(r10)
0183B018: 913F0000 stw r9,0(r31)
0183B01C: 913F0004 stw r9,4(r31)
msr: 0x0002B032
TLB1 (64 entries):
* [ 52]: size=7 tid = 0 TS = 1 epn=0xFE000000 rpn=0x0000000F_FE000000 WIMG=0x5 XXWWRR=0xF protected
* [ 53]: size=6 tid = 0 TS = 1 epn=0x01000000 rpn=0x00000000_01000000 WIMG=0x0 XXWWRR=0x5 protected
* [ 54]: size=6 tid = 0 TS = 1 epn=0x01400000 rpn=0x00000000_01400000 WIMG=0x0 XXWWRR=0x5 protected
* [ 55]: size=6 tid = 0 TS = 1 epn=0x01800000 rpn=0x00000000_01800000 WIMG=0x0 XXWWRR=0x33 protected
* [ 56]: size=6 tid = 0 TS = 1 epn=0x01C00000 rpn=0x00000000_01C00000 WIMG=0x0 XXWWRR=0x33 protected
* [ 57]: size=6 tid = 0 TS = 1 epn=0x02000000 rpn=0x00000000_02000000 WIMG=0x0 XXWWRR=0xF protected
* [ 58]: size=3 tid = 0 TS = 1 epn=0x02400000 rpn=0x00000000_02400000 WIMG=0x0 XXWWRR=0xF protected
* [ 59]: size=3 tid = 0 TS = 1 epn=0x02410000 rpn=0x00000000_02410000 WIMG=0x0 XXWWRR=0xF protected
* [ 60]: size=3 tid = 0 TS = 1 epn=0x02420000 rpn=0x00000000_02420000 WIMG=0x0 XXWWRR=0xF protected
* [ 61]: size=7 tid = 0 TS = 0 epn=0xFE000000 rpn=0x0000000F_FE000000 WIMG=0x5 XXWWRR=0xF protected
* [ 62]: size=A tid = 0 TS = 0 epn=0x00000000 rpn=0x00000000_00000000 WIMG=0x0 XXWWRR=0x3F protected
* [ 63]: size=A tid = 0 TS = 0 epn=0x40000000 rpn=0x00000000_40000000 WIMG=0x0 XXWWRR=0x3F protected
HAL_MaxTLB = 51, HAL_NextTLB = 0
MMUCFG = 0x064809C4
mas0 = 0x103F0000
mas1 = 0xC0000A00
mas2 = 0x40000000
mas3 = 0x4000003F
mas4 = 0x00000100
mas5 = 0x00000000
mas6 = 0x00000001
mas7 = 0x00000000
mas8 = 0x00000000
[HAL_DfltTrapHandler] *** Warning: Fatal exception in task 0x6919F1B0 (imp3, etask = 0xEFEC8300) at ip 0x0183B014
kernel 54.30 (1.1.2021) AmigaOne X5000 debug
Machine model: 9 (AmigaOne X5000/20)
Dump of context at 0xEFEC4000
Trap type: DSI exception
DSISR: 00800000 DAR: 00000004
No matching page found
Machine State (raw): 0x0002F030
Machine State (verbose): [Critical Ints on] [ExtInt on] [User] [IAT on] [DAT on]
Instruction pointer: in module kernel.debug+0x0003B014 (0x0183B014)
Crashed process: imp3 (0x6919F1B0)
DSI verbose error description: Access to address 0x00000004 not allowed by page protection in user state (protection violation)
Access was a store operation
Exception Syndrome Register: 0x00800000
0: 0184AD54 6B68F9A0 00000002 0220A968 6B68F9D0 00000094 65986800 82D5AE0E
8: 6B68FA18 CCCCCCCC 00000004 00000028 F9000000 0000000D 00000003 6FFA3420
16: 6B68FA2C 00000006 000000FF 00000008 6B68FA18 0200B4CC 0200B4AC 0200B4E4
24: 020000A0 0200B2E4 6FFA4000 02200000 0184AD54 02200000 0220A968 6B68F9D0
CR: 39555535 XER: C000006F CTR: 0183AF94 LR: 0184AD54
Disassembly of crash site:
0183B004: 6129CCCC ori r9,r9,52428
0183B008: 910A0004 stw r8,4(r10)
0183B00C: 815F0004 lwz r10,4(r31)
0183B010: 811F0000 lwz r8,0(r31)
>0183B014: 910A0000 stw r8,0(r10)
0183B018: 913F0000 stw r9,0(r31)
0183B01C: 913F0004 stw r9,4(r31)
0183B020: 813D8BD8 lwz r9,-29736(r29)
0183B024: 2F890013 cmpwi cr7,r9,19
0183B028: 40DD002C ble- cr7,0x183B054
msr: 0x0002B032
TLB1 (64 entries):
* [ 52]: size=7 tid = 0 TS = 1 epn=0xFE000000 rpn=0x0000000F_FE000000 WIMG=0x5 XXWWRR=0xF protected
* [ 53]: size=6 tid = 0 TS = 1 epn=0x01000000 rpn=0x00000000_01000000 WIMG=0x0 XXWWRR=0x5 protected
* [ 54]: size=6 tid = 0 TS = 1 epn=0x01400000 rpn=0x00000000_01400000 WIMG=0x0 XXWWRR=0x5 protected
* [ 55]: size=6 tid = 0 TS = 1 epn=0x01800000 rpn=0x00000000_01800000 WIMG=0x0 XXWWRR=0x33 protected
* [ 56]: size=6 tid = 0 TS = 1 epn=0x01C00000 rpn=0x00000000_01C00000 WIMG=0x0 XXWWRR=0x33 protected
* [ 57]: size=6 tid = 0 TS = 1 epn=0x02000000 rpn=0x00000000_02000000 WIMG=0x0 XXWWRR=0xF protected
* [ 58]: size=3 tid = 0 TS = 1 epn=0x02400000 rpn=0x00000000_02400000 WIMG=0x0 XXWWRR=0xF protected
* [ 59]: size=3 tid = 0 TS = 1 epn=0x02410000 rpn=0x00000000_02410000 WIMG=0x0 XXWWRR=0xF protected
* [ 60]: size=3 tid = 0 TS = 1 epn=0x02420000 rpn=0x00000000_02420000 WIMG=0x0 XXWWRR=0xF protected
* [ 61]: size=7 tid = 0 TS = 0 epn=0xFE000000 rpn=0x0000000F_FE000000 WIMG=0x5 XXWWRR=0xF protected
* [ 62]: size=A tid = 0 TS = 0 epn=0x00000000 rpn=0x00000000_00000000 WIMG=0x0 XXWWRR=0x3F protected
* [ 63]: size=A tid = 0 TS = 0 epn=0x40000000 rpn=0x00000000_40000000 WIMG=0x0 XXWWRR=0x3F protected
HAL_MaxTLB = 51, HAL_NextTLB = 0
MMUCFG = 0x064809C4
mas0 = 0x103F0000
mas1 = 0xC0000A00
mas2 = 0x40000000
mas3 = 0x4000003F
mas4 = 0x00000100
mas5 = 0x00000000
mas6 = 0x00000001
mas7 = 0x00000000
mas8 = 0x00000000
Kernel command line: debug munge debuglevel=1 serial
Registers pointing to code:
r0 : native kernel module kernel.debug+0x0004ad54
r3 : native kernel module kernel.debug+0x00a0a968
r21: native kernel module kernel.debug+0x0080b4cc
r22: native kernel module kernel.debug+0x0080b4ac
r23: native kernel module kernel.debug+0x0080b4e4
r24: native kernel module kernel.debug+0x008000a0
r25: native kernel module kernel.debug+0x0080b2e4
r27: native kernel module kernel.debug+0x00a00000
r28: native kernel module kernel.debug+0x0004ad54
r29: native kernel module kernel.debug+0x00a00000
r30: native kernel module kernel.debug+0x00a0a968
ip : native kernel module kernel.debug+0x0003b014
lr : native kernel module kernel.debug+0x0004ad54
ctr: native kernel module kernel.debug+0x0003af94
Stack trace:
(0x6B68F9A0) native kernel module kernel.debug+0x0003b014
(0x6B68F9C0) native kernel module kernel.debug+0x0004ad54
(0x6B68FA00) native kernel module graphics.library.kmod+0x000363d8
(0x6B68FAE0) native kernel module intuition.library.kmod+0x00046698
(0x6B68FC80) native kernel module intuition.library.kmod+0x0007bbc4
(0x6B68FD20) native kernel module intuition.library.kmod+0x0007f29c
(0x6B68FE30) native kernel module intuition.library.kmod+0x00029638
(0x6B68FE50) native kernel module intuition.library.kmod+0x00065400
(0x6B68FEB0) native kernel module intuition.library.kmod+0x00029f34
(0x6B68FEE0) native kernel module intuition.library.kmod+0x0007fa04
(0x6B68FF90) native kernel module intuition.library.kmod+0x00080164
(0x6B68FFA0) native kernel module kernel.debug+0x00026d24
(0x6B68FFB8) 0x00000008 [cannot decode symbol]
(0x65C7BA34) 0x65C90E82 [cannot decode symbol]
Disassembly of crash site:
0183B004: 6129CCCC ori r9,r9,52428
0183B008: 910A0004 stw r8,4(r10)
0183B00C: 815F0004 lwz r10,4(r31)
0183B010: 811F0000 lwz r8,0(r31)
>0183B014: 910A0000 stw r8,0(r10)
0183B018: 913F0000 stw r9,0(r31)
0183B01C: 913F0004 stw r9,4(r31)
0183B020: 813D8BD8 lwz r9,-29736(r29)
0183B024: 2F890013 cmpwi cr7,r9,19
0183B028: 40DD002C ble- cr7,0x183B054
Stack pointer (0x6B68F9A0) is inside bounds
Redzone is OK (4)
68k register dump
DATA: 82D4A500 00000000 00000000 00000008 0000000F 00000007 5D9D4C04 0000000D
ADDR: 6FFA4000 82D82400 FFFFFFFF 6AB0D692 6C6B8050 6AB0E406 6F0924D0 6B68F6F0
Page information:
Page not found
Ready Tasks
HID Joystick (pri 10, sigrec 0x80000000, sigwait 0x80001000, masked 0x80000000)
HOME/smb2-handler 53.7 (pri 5, sigrec 0x80000180, sigwait 0xC0000000, masked 0x80000000)
MUSIC/smb2-handler 53.7 (pri 5, sigrec 0x80000180, sigwait 0xC0000000, masked 0x80000000)
IDF0/FastFileSystem 53.2 (pri 5, sigrec 0x20000000, sigwait 0xA8000100, masked 0x20000000)
IDF1/FastFileSystem 53.2 (pri 5, sigrec 0x20000000, sigwait 0xA8000100, masked 0x20000000)
AMIGA_SSH/ssh2-handler 53.12 (pri 5, sigrec 0x80000100, sigwait 0xC0000000, masked 0x80000000)
compose.task (pri 1, sigrec 0x00000020, sigwait 0x00000021, masked 0x00000020)
Workbench (pri 1, sigrec 0x80000180, sigwait 0x80000000, masked 0x80000000)
Bildschirmschoner-Bibliothek. (pri 1, sigrec 0x04000100, sigwait 0xB4001000, masked 0x04000000)
IMP3 - Debugger (pri 0, sigrec 0x00000100, sigwait 0x00000100, masked 0x00000100)
ptreplay.library player process (pri 0, sigrec 0x80000100, sigwait 0x00000010, masked 0x00000000)
NotificationServer (pri 0, sigrec 0x04000000, sigwait 0xBC001000, masked 0x04000000)
TCP/IP Control (pri 0, sigrec 0x40000100, sigwait 0xF8009080, masked 0x40000000)
Clock (pri 0, sigrec 0x02000000, sigwait 0x6E001000, masked 0x02000000)
vsata disk changer (pri 0, sigrec 0x80000000, sigwait 0x80000000, masked 0x80000000)
Calendar (pri 0, sigrec 0x04000000, sigwait 0xDC001000, masked 0x04000000)
hub.usbfd (pri 0, sigrec 0x10000000, sigwait 0x30000000, masked 0x10000000)
hub.usbfd (pri 0, sigrec 0x10000000, sigwait 0x30000000, masked 0x10000000)
dos_signal_server (pri -5, sigrec 0x00000100, sigwait 0x00000100, masked 0x00000100)
ELF Collector (pri -5, sigrec 0x00000100, sigwait 0x00000100, masked 0x00000100)
CPUDock_idleTask (pri -127, sigrec 0x00000000, sigwait 0x40000000, masked 0x00000000)
idle.task (pri -128, sigrec 0x00000000, sigwait 0x00000000, masked 0x00000000)
Waiting Tasks
hid.usbfd (pri 10, sigrec 0x00000100, sigwait 0xE0000000, masked 0x00000000)
HOME/smb2-handler 53.7 (pri 5, sigrec 0x80000180, sigwait 0xC0000000, masked 0x80000000)
MUSIC/smb2-handler 53.7 (pri 5, sigrec 0x80000180, sigwait 0xC0000000, masked 0x80000000)
IDF0/FastFileSystem 53.2 (pri 5, sigrec 0x20000000, sigwait 0xA8000100, masked 0x20000000)
IDF1/FastFileSystem 53.2 (pri 5, sigrec 0x20000000, sigwait 0xA8000100, masked 0x20000000)
AMIGA_SSH/ssh2-handler 53.12 (pri 5, sigrec 0x80000100, sigwait 0xC0000000, masked 0x80000000)
compose.task (pri 1, sigrec 0x00000020, sigwait 0x00000021, masked 0x00000020)
Workbench (pri 1, sigrec 0x80000180, sigwait 0x80000000, masked 0x80000000)
Bildschirmschoner-Bibliothek. (pri 1, sigrec 0x04000100, sigwait 0xB4001000, masked 0x04000000)
IMP3 - Debugger (pri 0, sigrec 0x00000100, sigwait 0x00000100, masked 0x00000100)
ptreplay.library player process (pri 0, sigrec 0x80000100, sigwait 0x00000010, masked 0x00000000)
NotificationServer (pri 0, sigrec 0x04000000, sigwait 0xBC001000, masked 0x04000000)
TCP/IP Control (pri 0, sigrec 0x50000100, sigwait 0xF8009080, masked 0x50000000)
Clock (pri 0, sigrec 0x02000000, sigwait 0x6E001000, masked 0x02000000)
vsata disk changer (pri 0, sigrec 0x80000000, sigwait 0x80000000, masked 0x80000000)
Calendar (pri 0, sigrec 0x04000000, sigwait 0xDC001000, masked 0x04000000)
hub.usbfd (pri 0, sigrec 0x10000000, sigwait 0x30000000, masked 0x10000000)
hub.usbfd (pri 0, sigrec 0x10000000, sigwait 0x30000000, masked 0x10000000)
dos_signal_server (pri -5, sigrec 0x00000100, sigwait 0x00000100, masked 0x00000100)
ELF Collector (pri -5, sigrec 0x00000100, sigwait 0x00000100, masked 0x00000100)
CPUDock_idleTask (pri -127, sigrec 0x00000000, sigwait 0x40000000, masked 0x00000000)
idle.task (pri -128, sigrec 0x00000000, sigwait 0x00000000, masked 0x00000000)
Suspended Tasks
AmiDock (pri 100, sigrec 0x00180000, sigwait 0x00000010, masked 0x00000000)
Kernel command line: debug munge debuglevel=1 serial
Registers pointing to code:
r0 : native kernel module kernel.debug+0x0004ad54
r3 : native kernel module kernel.debug+0x00a0a968
r6 : native kernel module kernel.debug+0x00b6bdcc
r7 : native kernel module kernel.debug+0x00b6be3c
r16: module LIBS:ptplay.library at 0x00000001 (section 0 @ 0xFFFFFFDC)
r17: native kernel module bootimage+0x00add420
r21: native kernel module kernel.debug+0x0080b4cc
r22: native kernel module kernel.debug+0x0080b4ac
r23: native kernel module kernel.debug+0x0080b4e4
r24: native kernel module kernel.debug+0x008000a0
r25: native kernel module kernel.debug+0x0080b2e4
r27: native kernel module kernel.debug+0x00a00000
r28: native kernel module kernel.debug+0x0004ad54
r29: native kernel module kernel.debug+0x00a00000
r30: native kernel module kernel.debug+0x00a0a968
ip : native kernel module kernel.debug+0x0003b008
lr : native kernel module kernel.debug+0x0004ad54
ctr: native kernel module kernel.debug+0x0003af94
Stack trace:
(0x69BBEEE0) native kernel module kernel.debug+0x0003b008
(0x69BBEF00) native kernel module kernel.debug+0x0004ad54
(0x69BBEF40) native kernel module graphics.library.kmod+0x0001d5cc
(0x69BBEFC0) native kernel module kernel.debug+0x000a13b8
(0x69BBF020) native kernel module graphics.library.kmod+0x000cdb44
(0x69BBF0B0) native kernel module graphics.library.kmod+0x0001d88c
(0x69BBF100) module AmiDock at 0x7FB0A724 (section 0 @ 0xC700)
(0x69BBF1B0) module AmiDock at 0x7FB1CE58 (section 0 @ 0x1EE34)
(0x69BBF380) module AmiDock at 0x7FB02D84 (section 0 @ 0x4D60)
(0x69BBF810) module AmiDock at 0x7FAFFCE4 (section 0 @ 0x1CC0)
(0x69BBF8A0) module AmiDock at 0x7FB00330 (section 0 @ 0x230C)
(0x69BBFCF0) module AmiDock at 0x7FB00560 (section 0 @ 0x253C)
(0x69BBFD10) native kernel module newlib.library.kmod+0x00002614
(0x69BBFD60) native kernel module newlib.library.kmod+0x000032f0
(0x69BBFF10) native kernel module newlib.library.kmod+0x00003864
(0x69BBFF40) AmiDock:_start()+0x1e0 (section 1 @ 0x1DC)
(0x69BBFF90) native kernel module dos.library.kmod+0x0002a458
(0x69BBFFC0) native kernel module kernel.debug+0x00088aec
(0x69BBFFD0) native kernel module kernel.debug+0x00088b64
Disassembly of crash site:
0183AFF8: 815F0000 lwz r10,0(r31)
0183AFFC: 3D20CCCC lis r9,-13108
0183B000: 811F0004 lwz r8,4(r31)
0183B004: 6129CCCC ori r9,r9,52428
>0183B008: 910A0004 stw r8,4(r10)
0183B00C: 815F0004 lwz r10,4(r31)
0183B010: 811F0000 lwz r8,0(r31)
0183B014: 910A0000 stw r8,0(r10)
0183B018: 913F0000 stw r9,0(r31)
0183B01C: 913F0004 stw r9,4(r31)
Stack pointer (0x69BBEEE0) is inside bounds
Redzone is OK (4)
68k register dump
DATA: 00000001 00000000 00000000 00000000 00000000 00000000 00000000 00000000
----> 00000001 - "LIBS:ptplay.library" Hunk 0000 Offset 00000000 (SegList: 0x19862A61)
ADDR: 6FFA4000 82D48B00 00000000 00000000 00000000 00000000 00000000 69BBED50
Page information:
Page not found
Ready Tasks
HID Joystick (pri 10, sigrec 0x80000000, sigwait 0x80001000, masked 0x80000000)
EHCI Controller Task Unit 1 (pri 15, sigrec 0x00000000, sigwait 0x82000000, masked 0x00000000)
USB stack (pri 18, sigrec 0x00000000, sigwait 0xF800D000, masked 0x00000000)
HID Joystick (pri 10, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
HOME/smb2-handler 53.7 (pri 5, sigrec 0x80000180, sigwait 0xC0000000, masked 0x80000000)
MUSIC/smb2-handler 53.7 (pri 5, sigrec 0x80000180, sigwait 0xC0000000, masked 0x80000000)
AMIGA_SSH/ssh2-handler 53.12 (pri 5, sigrec 0x80000100, sigwait 0xC0000000, masked 0x80000000)
IDF0/FastFileSystem 53.2 (pri 5, sigrec 0x20000000, sigwait 0xA8000100, masked 0x20000000)
IDF1/FastFileSystem 53.2 (pri 5, sigrec 0x20000000, sigwait 0xA8000100, masked 0x20000000)
compose.task (pri 1, sigrec 0x00000020, sigwait 0x00000021, masked 0x00000020)
Workbench (pri 1, sigrec 0x80000180, sigwait 0x80000000, masked 0x80000000)
NotificationServer (pri 0, sigrec 0x04000000, sigwait 0xBC001000, masked 0x04000000)
ptreplay.library player process (pri 0, sigrec 0x80000100, sigwait 0x00000010, masked 0x00000000)
Background CLI (pri 0, sigrec 0x00000100, sigwait 0x00000010, masked 0x00000000)
IMP3 - Debugger (pri 0, sigrec 0x00000100, sigwait 0x00000100, masked 0x00000100)
TCP/IP Control (pri 0, sigrec 0x50000100, sigwait 0xF8009080, masked 0x50000000)
hub.usbfd (pri 0, sigrec 0x10000000, sigwait 0x30000000, masked 0x10000000)
hub.usbfd (pri 0, sigrec 0x10000000, sigwait 0x30000000, masked 0x10000000)
dos_signal_server (pri -5, sigrec 0x00004100, sigwait 0x00000100, masked 0x00000100)
ELF Collector (pri -5, sigrec 0x00000100, sigwait 0x00000100, masked 0x00000100)
CPUDock_idleTask (pri -127, sigrec 0x00000000, sigwait 0x40000000, masked 0x00000000)
idle.task (pri -128, sigrec 0x00000000, sigwait 0x00000000, masked 0x00000000)
Waiting Tasks
HID Joystick (pri 10, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
hid.usbfd (pri 10, sigrec 0x00000100, sigwait 0xE0000000, masked 0x00000000)
HOME/smb2-handler 53.7 (pri 5, sigrec 0x80000180, sigwait 0xC0000000, masked 0x80000000)
MUSIC/smb2-handler 53.7 (pri 5, sigrec 0x80000180, sigwait 0xC0000000, masked 0x80000000)
AMIGA_SSH/ssh2-handler 53.12 (pri 5, sigrec 0x80000100, sigwait 0xC0000000, masked 0x80000000)
IDF0/FastFileSystem 53.2 (pri 5, sigrec 0x20000000, sigwait 0xA8000100, masked 0x20000000)
IDF1/FastFileSystem 53.2 (pri 5, sigrec 0x20000000, sigwait 0xA8000100, masked 0x20000000)
compose.task (pri 1, sigrec 0x00000020, sigwait 0x00000021, masked 0x00000020)
Workbench (pri 1, sigrec 0x80000180, sigwait 0x80000000, masked 0x80000000)
NotificationServer (pri 0, sigrec 0x04000000, sigwait 0xBC001000, masked 0x04000000)
ptreplay.library player process (pri 0, sigrec 0x80000100, sigwait 0x00000010, masked 0x00000000)
Background CLI (pri 0, sigrec 0x00000100, sigwait 0x00000010, masked 0x00000000)
IMP3 - Debugger (pri 0, sigrec 0x00000100, sigwait 0x00000100, masked 0x00000100)
TCP/IP Control (pri 0, sigrec 0x50000100, sigwait 0xF8009080, masked 0x50000000)
hub.usbfd (pri 0, sigrec 0x10000000, sigwait 0x30000000, masked 0x10000000)
hub.usbfd (pri 0, sigrec 0x10000000, sigwait 0x30000000, masked 0x10000000)
dos_signal_server (pri -5, sigrec 0x00004100, sigwait 0x00000100, masked 0x00000100)
ELF Collector (pri -5, sigrec 0x00000100, sigwait 0x00000100, masked 0x00000100)
CPUDock_idleTask (pri -127, sigrec 0x00000000, sigwait 0x40000000, masked 0x00000000)
idle.task (pri -128, sigrec 0x00000000, sigwait 0x00000000, masked 0x00000000)
Suspended Tasks
|
|
|
|
|
|
Re: MOD replay in IMP3 freezes OS4
|
Posted on: 2025/2/21 7:27
#40
|
Just popping in 
|
@khayoz Thank you for the suggestion! But sadly, it is not AHI or the soundcard driver. I disabled all IExec->DoIO calls and the IExec->AbortIO/IExec->WaitIO calls at the end. IMP3 was going through the mods very, very quickly ;) After a minute or so the system froze again:
kernel 54.30 (1.1.2021) AmigaOne X5000 release
Machine model: 9 (AmigaOne X5000/20)
Dump of context at 0xEFCF2000
Trap type: DSI exception
DSISR: 00800000 DAR: 00000004
No matching page found
Machine State (raw): 0x0002F030
Machine State (verbose): [Critical Ints on] [ExtInt on] [User] [IAT on] [DAT on]
Instruction pointer: in module kernel+0x000331C0 (0x018331C0)
Crashed process: imp3 (0x6B87B620)
DSI verbose error description: Access to address 0x00000004 not allowed by page protection in user state (protection violation)
Access was a store operation
Exception Syndrome Register: 0x00800000
0: 01C4E180 6B3FB300 00000002 021FA968 6FF501D4 00000000 0000F8C1 00000000
8: 021FA968 69BD0908 021FA968 01C282C8 59333933 0000000D 0000000C 6FFA3420
16: 00000008 000000C0 000000FF 00000008 6B3FB348 6B3FB78C 6FF5A140 00000000
24: 000000FF 00000000 6FF501D4 6B3FB348 02400000 6FFFF800 00000000 6FF501B8
CR: 59333933 XER: A000007E CTR: 018331BC LR: 01C678C8
Disassembly of crash site:
018331B0: 81240000 lwz r9,0(r4)
018331B4: 90890004 stw r4,4(r9)
018331B8: 4E800020 blr
018331BC: 81240000 lwz r9,0(r4)
>018331C0: 90850004 stw r4,4(r5)
018331C4: 91250000 stw r9,0(r5)
018331C8: 90A40000 stw r5,0(r4)
018331CC: 81250000 lwz r9,0(r5)
018331D0: 90A90004 stw r5,4(r9)
018331D4: 4E800020 blr
msr: 0x0002B032
TLB1 (64 entries):
* [ 53]: size=7 tid = 0 TS = 1 epn=0xFE000000 rpn=0x0000000F_FE000000 WIMG=0x5 XXWWRR=0xF protected
* [ 54]: size=6 tid = 0 TS = 1 epn=0x01000000 rpn=0x00000000_01000000 WIMG=0x0 XXWWRR=0x5 protected
* [ 55]: size=6 tid = 0 TS = 1 epn=0x01400000 rpn=0x00000000_01400000 WIMG=0x0 XXWWRR=0x5 protected
* [ 56]: size=6 tid = 0 TS = 1 epn=0x01800000 rpn=0x00000000_01800000 WIMG=0x0 XXWWRR=0x33 protected
* [ 57]: size=6 tid = 0 TS = 1 epn=0x01C00000 rpn=0x00000000_01C00000 WIMG=0x0 XXWWRR=0x33 protected
* [ 58]: size=6 tid = 0 TS = 1 epn=0x02000000 rpn=0x00000000_02000000 WIMG=0x0 XXWWRR=0xF protected
* [ 59]: size=3 tid = 0 TS = 1 epn=0x02400000 rpn=0x00000000_02400000 WIMG=0x0 XXWWRR=0xF protected
* [ 60]: size=3 tid = 0 TS = 1 epn=0x02410000 rpn=0x00000000_02410000 WIMG=0x0 XXWWRR=0xF protected
* [ 61]: size=7 tid = 0 TS = 0 epn=0xFE000000 rpn=0x0000000F_FE000000 WIMG=0x5 XXWWRR=0xF protected
* [ 62]: size=A tid = 0 TS = 0 epn=0x00000000 rpn=0x00000000_00000000 WIMG=0x0 XXWWRR=0x3F protected
* [ 63]: size=A tid = 0 TS = 0 epn=0x40000000 rpn=0x00000000_40000000 WIMG=0x0 XXWWRR=0x3F protected
HAL_MaxTLB = 52, HAL_NextTLB = 0
MMUCFG = 0x064809C4
mas0 = 0x00020003
mas1 = 0x80001100
mas2 = 0x7FB9B000
mas3 = 0x061F0033
mas4 = 0x00000100
mas5 = 0x00000000
mas6 = 0x00000001
mas7 = 0x00000000
mas8 = 0x00000000
Kernel command line: debug munge debuglevel=1 serial
Registers pointing to code:
r0 : native kernel module graphics.library.kmod+0x00035d80
r3 : native kernel module kernel+0x009fa968
r8 : native kernel module kernel+0x009fa968
r10: native kernel module kernel+0x009fa968
r11: native kernel module graphics.library.kmod+0x0000fec8
r28: native kernel module bootimage+0x00b04e20
ip : native kernel module kernel+0x000331c0
lr : native kernel module graphics.library.kmod+0x0004f4c8
ctr: native kernel module kernel+0x000331bc
Stack trace:
(0x6B3FB300) native kernel module kernel+0x000331c0
(0x6B3FB330) native kernel module graphics.library.kmod+0x0004f4c8
(0x6B3FB410) native kernel module graphics.library.kmod+0x00006ecc
(0x6B3FB440) native kernel module graphics.library.kmod+0x00006ff0
(0x6B3FB4A0) native kernel module graphics.library.kmod+0x000cd6d8
(0x6B3FB4E0) native kernel module graphics.library.kmod+0x000cdcac
(0x6B3FB570) native kernel module graphics.library.kmod+0x0000a0cc
(0x6B3FB850) native kernel module graphics.library.kmod+0x00008ff8
(0x6B3FB8D0) native kernel module intuition.library.kmod+0x0004d994
(0x6B3FB9A0) native kernel module intuition.library.kmod+0x000304bc
(0x6B3FBCB0) native kernel module graphics.library.kmod+0x000cc340
(0x6B3FBCF0) native kernel module graphics.library.kmod+0x000cc440
(0x6B3FBD60) native kernel module intuition.library.kmod+0x0007f364
(0x6B3FBE70) native kernel module intuition.library.kmod+0x00029638
(0x6B3FBE90) native kernel module intuition.library.kmod+0x00065400
(0x6B3FBEF0) native kernel module intuition.library.kmod+0x00029f34
(0x6B3FBF20) native kernel module intuition.library.kmod+0x0007fa04
(0x6B3FBFD0) native kernel module intuition.library.kmod+0x00080164
(0x6B3FBFE0) native kernel module kernel+0x00020094
(0x6B3FBFF0) 0x63F67CCC [cannot decode symbol]
Disassembly of crash site:
018331B0: 81240000 lwz r9,0(r4)
018331B4: 90890004 stw r4,4(r9)
018331B8: 4E800020 blr
018331BC: 81240000 lwz r9,0(r4)
>018331C0: 90850004 stw r4,4(r5)
018331C4: 91250000 stw r9,0(r5)
018331C8: 90A40000 stw r5,0(r4)
018331CC: 81250000 lwz r9,0(r5)
018331D0: 90A90004 stw r5,4(r9)
018331D4: 4E800020 blr
Stack pointer (0x6B3FB300) is inside bounds
Redzone is OK (4)
68k register dump
DATA: 00000001 00000000 0000FFFF 00000002 00000003 00000007 00000057 00000000
----> 00000001 - "imp3" Hunk 0000 Offset 00000000 (SegList: 0x191098A9)
ADDR: 6FFA4000 830B4F00 FFFFFFFF 6B3E0692 6C6C8050 6B3E13EE 6F0A24D0 6B3FB8D0
Page information:
Page not found
Ready Tasks
HID Joystick (pri 10, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
hid.usbfd (pri 10, sigrec 0x00000100, sigwait 0xE0000000, masked 0x00000000)
TN ShadowNet (pri 5, sigrec 0x00000180, sigwait 0x00000100, masked 0x00000100)
WinFrame 1 Process (pri 5, sigrec 0x00800000, sigwait 0xFF800000, masked 0x00800000)
HOME/smb2-handler 53.7 (pri 5, sigrec 0x80000180, sigwait 0xC0000000, masked 0x80000000)
MUSIC/smb2-handler 53.7 (pri 5, sigrec 0x80000180, sigwait 0xC0000000, masked 0x80000000)
AMIGA_SSH/ssh2-handler 53.12 (pri 5, sigrec 0x80000100, sigwait 0xC0000000, masked 0x80000000)
IDF0/FastFileSystem 53.2 (pri 5, sigrec 0x20000000, sigwait 0xA8000100, masked 0x20000000)
IDF1/FastFileSystem 53.2 (pri 5, sigrec 0x20000000, sigwait 0xA8000100, masked 0x20000000)
compose.task (pri 1, sigrec 0x00000020, sigwait 0x00000021, masked 0x00000020)
Workbench (pri 1, sigrec 0x80000180, sigwait 0x80000000, masked 0x80000000)
ptreplay.library player process (pri 0, sigrec 0x80000100, sigwait 0x00000010, masked 0x00000000)
NotificationServer (pri 0, sigrec 0x04000000, sigwait 0xBC001000, masked 0x04000000)
TuneNetR (pri 0, sigrec 0x00000100, sigwait 0x00000100, masked 0x00000100)
TuneNet (pri 0, sigrec 0x81000100, sigwait 0x00000100, masked 0x00000100)
IMP3 - Debugger (pri 0, sigrec 0x00000100, sigwait 0x00000100, masked 0x00000100)
TCP/IP Control (pri 0, sigrec 0x50000100, sigwait 0xF8009080, masked 0x50000000)
AmiDock (pri 0, sigrec 0x00180000, sigwait 0x00000010, masked 0x00000000)
hub.usbfd (pri 0, sigrec 0x10000000, sigwait 0x30000000, masked 0x10000000)
hub.usbfd (pri 0, sigrec 0x10000000, sigwait 0x30000000, masked 0x10000000)
Clock (pri 0, sigrec 0x02000000, sigwait 0x6E001000, masked 0x02000000)
Calendar (pri 0, sigrec 0x04000000, sigwait 0xDC001000, masked 0x04000000)
TuneNetR (pri -1, sigrec 0x00000100, sigwait 0x00000100, masked 0x00000100)
dos_signal_server (pri -5, sigrec 0x00004000, sigwait 0x0000F000, masked 0x00004000)
ELF Collector (pri -5, sigrec 0x00000100, sigwait 0x00000100, masked 0x00000100)
CPUDock_idleTask (pri -127, sigrec 0x00000000, sigwait 0x40000000, masked 0x00000000)
idle.task (pri -128, sigrec 0x00000000, sigwait 0x00000000, masked 0x00000000)
Waiting Tasks
DH0/NGFileSystem 54.106 (pri 10, sigrec 0x00000100, sigwait 0xF0000000, masked 0x00000000)
DH1/NGFileSystem 54.106 (pri 10, sigrec 0x00000100, sigwait 0xF0000000, masked 0x00000000)
EHCI Controller Task Unit 0 (pri 15, sigrec 0x00000000, sigwait 0xBE009000, masked 0x00000000)
TuneNetR (pri 10, sigrec 0x00000000, sigwait 0x02000000, masked 0x00000000)
ahi.device Unit Process (pri 50, sigrec 0x00000100, sigwait 0xF000C000, masked 0x00000000)
DH0/NGFileSystem 54.106 (pri 10, sigrec 0x00000100, sigwait 0xF0000000, masked 0x00000000)
DH1/NGFileSystem 54.106 (pri 10, sigrec 0x00000100, sigwait 0xF0000000, masked 0x00000000)
EHCI Controller Task Unit 0 (pri 15, sigrec 0x00000000, sigwait 0xBE009000, masked 0x00000000)
P50x0 Ethernet (pri 20, sigrec 0x00000000, sigwait 0x00001000, masked 0x00000000)
sii3114ide.device - chip 0 port 0 (pri 12, sigrec 0x00008000, sigwait 0xC0000000, masked 0x00000000)
rx_pm (pri 100, sigrec 0x00000000, sigwait 0x80000001, masked 0x00000000)
input.device (pri 20, sigrec 0x00000000, sigwait 0x00000010, masked 0x00000000)
CygnusEd ver. 5 (pri 1, sigrec 0x00000100, sigwait 0x4E000000, masked 0x00000000)
vsata disk changer (pri 0, sigrec 0x00000000, sigwait 0x80000000, masked 0x00000000)
ICD1/CDFileSystem 53.8 (pri 10, sigrec 0x00000000, sigwait 0x00000100, masked 0x00000000)
ICD0/CDFileSystem 53.8 (pri 10, sigrec 0x00000000, sigwait 0x00000100, masked 0x00000000)
DH2/SmartFilesystem 1.293 (pri 11, sigrec 0x00000000, sigwait 0x00000100, masked 0x00000000)
CD0/CDFileSystem 53.8 (pri 10, sigrec 0x00000000, sigwait 0x00000100, masked 0x00000000)
serial.device (pri 1, sigrec 0x00000000, sigwait 0x7E000000, masked 0x00000000)
hub.usbfd (pri 0, sigrec 0x08000000, sigwait 0x30000000, masked 0x00000000)
CygnusEd mouse blanker (pri 10, sigrec 0x00000000, sigwait 0x0000F000, masked 0x00000000)
rx_gc (pri 100, sigrec 0x00000000, sigwait 0x80000001, masked 0x00000000)
p50x0sata.device Port 0 (pri 12, sigrec 0x10000000, sigwait 0xC0007000, masked 0x00000000)
dos_filedir_notify (pri 5, sigrec 0x80000000, sigwait 0x40001000, masked 0x00000000)
TN_PlayMasterR (pri 5, sigrec 0x00000000, sigwait 0x0000A001, masked 0x00000000)
TCP/IP Configuration (pri 0, sigrec 0x00000100, sigwait 0xF8003000, masked 0x00000000)
appdir envarc manager (pri -50, sigrec 0x00000000, sigwait 0x80005000, masked 0x00000000)
ramlib.support (pri -2, sigrec 0x00000000, sigwait 0x80005000, masked 0x00000000)
ramlib (pri 1, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
sdkbrowser (pri -1, sigrec 0x00000100, sigwait 0xB4001002, masked 0x00000000)
ClickToFront (pri 21, sigrec 0x00000100, sigwait 0xE000D000, masked 0x00000000)
URL/launch-handler 53.39 (pri 5, sigrec 0x00000100, sigwait 0x80000000, masked 0x00000000)
TEXTCLIP/textclip-handler 53.4 (pri 3, sigrec 0x00000100, sigwait 0x80000000, masked 0x00000000)
RANDOM/Random-Handler 52.1 (pri 5, sigrec 0x00000000, sigwait 0x00000100, masked 0x00000000)
Mounter Task (pri -1, sigrec 0x00000000, sigwait 0xB0001000, masked 0x00000000)
Mounter GUI (pri 0, sigrec 0x00000000, sigwait 0x80007000, masked 0x00000000)
Mounter Companion Process (pri -1, sigrec 0x00000000, sigwait 0x80003000, masked 0x00000000)
Workbench DosList Notify (pri 1, sigrec 0x00000100, sigwait 0x00003000, masked 0x00000000)
CON/con-handler 53.82 (pri 5, sigrec 0x00000000, sigwait 0xA0000100, masked 0x00000000)
Shell Process (pri 0, sigrec 0x00000000, sigwait 0x00000100, masked 0x00000000)
CON/con-handler 53.82 (pri 5, sigrec 0x00000000, sigwait 0xB0000100, masked 0x00000000)
application.library messageserver (pri 0, sigrec 0x00000000, sigwait 0xC0000000, masked 0x00000000)
ScreenBlankerEngine (pri 0, sigrec 0x00000100, sigwait 0xD8001000, masked 0x00000000)
CON/con-handler 53.82 (pri 5, sigrec 0x00000000, sigwait 0xA0000100, masked 0x00000000)
DH2/SmartFilesystem 1.293 (pri 10, sigrec 0x00000000, sigwait 0xE0000100, masked 0x00000000)
ContextMenus Command Dispatcher (pri 1, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
ContextMenus (pri 0, sigrec 0x00000100, sigwait 0xE0001000, masked 0x00000000)
RexxMaster (pri 4, sigrec 0x00000100, sigwait 0xC0000000, masked 0x00000000)
clipview.library server (pri 0, sigrec 0x00000000, sigwait 0xD8003000, masked 0x00000000)
« IPrefs » (pri 0, sigrec 0x00000000, sigwait 0x0000F000, masked 0x00000000)
AsyncWB (pri 0, sigrec 0x00000100, sigwait 0xC0001000, masked 0x00000000)
InfoWB (pri 0, sigrec 0x00000100, sigwait 0xF8001000, masked 0x00000000)
texteditor.gadget Clipboard Server (pri 1, sigrec 0x00000100, sigwait 0x80000000, masked 0x00000000)
select.gadget prefs (pri 0, sigrec 0x00000100, sigwait 0x80001000, masked 0x00000000)
CON/con-handler 53.82 (pri 5, sigrec 0x00000000, sigwait 0xA0000100, masked 0x00000000)
CON/con-handler 53.82 (pri 5, sigrec 0x00000000, sigwait 0xA0000100, masked 0x00000000)
CON/con-handler 53.82 (pri 5, sigrec 0x00000000, sigwait 0xA0000100, masked 0x00000000)
CON/con-handler 53.82 (pri 5, sigrec 0x00000000, sigwait 0xA0000100, masked 0x00000000)
DefIcons (pri 0, sigrec 0x00000100, sigwait 0x80009000, masked 0x00000000)
CON/con-handler 53.82 (pri 5, sigrec 0x00000000, sigwait 0xA0000100, masked 0x00000000)
CON/con-handler 53.82 (pri 5, sigrec 0x00000000, sigwait 0xA0000100, masked 0x00000000)
CON/con-handler 53.82 (pri 5, sigrec 0x00000000, sigwait 0xA0000100, masked 0x00000000)
CON/con-handler 53.82 (pri 5, sigrec 0x00000000, sigwait 0xA0000100, masked 0x00000000)
string.gadget server (pri 1, sigrec 0x00000100, sigwait 0x40000000, masked 0x00000000)
p50x0sata.device Port 1 (pri 12, sigrec 0x10000000, sigwait 0xC0007000, masked 0x00000000)
Workbench Clipboard Server (pri 1, sigrec 0x00000100, sigwait 0x80000000, masked 0x00000000)
TCP/IP Log (pri 0, sigrec 0x00000000, sigwait 0x80003000, masked 0x00000000)
ConClip (pri 0, sigrec 0x00000000, sigwait 0x80000000, masked 0x00000000)
diskimage.device unit 1 (pri 4, sigrec 0x00000100, sigwait 0xC0000000, masked 0x00000000)
diskimage.device unit 0 (pri 4, sigrec 0x00000100, sigwait 0xC0000000, masked 0x00000000)
diskimage.device unit 5 (pri 4, sigrec 0x00000100, sigwait 0xC0000000, masked 0x00000000)
diskimage.device unit 4 (pri 4, sigrec 0x00000100, sigwait 0xC0000000, masked 0x00000000)
camdmidi.usbfd (pri 45, sigrec 0x00000100, sigwait 0x60001000, masked 0x00000000)
Camd Wait Proc (pri 5, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
USB stack Process (pri 0, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
AUDIO/AHI-Handler 6.2 (pri 5, sigrec 0x00000000, sigwait 0x00000100, masked 0x00000000)
APPDIR/appdir-handler 54.17 (pri 5, sigrec 0x00000100, sigwait 0x80000000, masked 0x00000000)
MassStorage Notifier (pri 0, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
DST watcher (pri 0, sigrec 0x00000000, sigwait 0xC0000000, masked 0x00000000)
RAM/ram-handler 54.24 (pri 10, sigrec 0x00000100, sigwait 0x80000000, masked 0x00000000)
ENV/env-handler 54.18 (pri 5, sigrec 0x00000100, sigwait 0x80000000, masked 0x00000000)
CON/con-handler 53.82 (pri 5, sigrec 0x00000000, sigwait 0xA0000100, masked 0x00000000)
RAW/con-handler 53.82 (pri 5, sigrec 0x00000000, sigwait 0xA0000100, masked 0x00000000)
CON/con-handler 53.82 (pri 5, sigrec 0x00000000, sigwait 0xA0000100, masked 0x00000000)
SFS DosList handler (pri 19, sigrec 0x00000000, sigwait 0x80000000, masked 0x00000000)
dos_nbmd_process (pri 5, sigrec 0x00000000, sigwait 0x00001100, masked 0x00000000)
dos_lock_handler (pri 5, sigrec 0x00000000, sigwait 0x00001100, masked 0x00000000)
hub.usbfd (pri 0, sigrec 0x00000000, sigwait 0x30000000, masked 0x00000000)
Exec Command and Control (pri 30, sigrec 0x00000000, sigwait 0x80000000, masked 0x00000000)
DMA2 Channel 4 Handler (pri 0, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
DMA1 Channel 4 Handler (pri 0, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
DMA2 Channel 3 Handler (pri 0, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
DMA1 Channel 3 Handler (pri 0, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
DMA2 Channel 2 Handler (pri 0, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
DMA1 Channel 2 Handler (pri 0, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
DMA2 Channel 1 Handler (pri 0, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
DMA1 Channel 1 Handler (pri 0, sigrec 0x00000000, sigwait 0x80001000, masked 0x00000000)
Suspended Tasks
It is not the sound card, I had the same freezes/crashes also with an ESI @Julia. Of course it might be another hardware failure (memory, gfx card, mainboard, ...). But a software bug is much more likely as the system is very stable when not playing mods with heavy usage. BTW: TuneNet is still playing internet radio after a crash ;) Not sure why that part of the OS is still running when the UI is not...
|
|
|
|
|
|