Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
77 user(s) are online (50 user(s) are browsing Forums)

Members: 1
Guests: 76

MickJT, more...

Support us!

Headlines

Forum Index


Board index » All Posts (FlynnTheAvatar)




Re: Bug on Makedir command (Enhancer)
Just popping in
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.

Go to top


Re: Bug on Makedir command (Enhancer)
Just popping in
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?

Go to top


Re: infinite icons theme pack
Just popping in
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.

Go to top


Re: infinite icons theme pack
Just popping in
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):
    
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_headerindex)
        if 
index == -1:
            break
        
positions.append(index)
        
index += 1

    images 
= []
    for 
i in range(len(positions)):
        
start positions[i]
        
end positions[1] if len(positions) else len(content)
        
images.append(content[start:end])

    return 
images

def resize_and_export
(png_bytessize=(6464)):
    
image Image.open(StringIO.StringIO(png_bytes))
    
resized image.resize(sizeImage.ANTIALIAS)
    
output StringIO.StringIO()
    
resized.save(outputformat='PNG')
    return 
output.getvalue()

def process_and_concat(input_fileoutput_filesize=(6464)):
    
png_raw_data find_pngs(input_file)
    
concatenated ''

    
for png in png_raw_data:
        
small_png resize_and_export(pngsize)
        
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 = (widthheight)
    else:
        
size = (6464)

    
process_and_concat(input_pathinput_pathsize)

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
Go to top


Re: infinite icons theme pack
Just popping in
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.

Go to top


Re: infinite icons theme pack
Just popping in
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[1] if len(positions) else len(content)
        
images.append(content[start:end])

    return 
images

def resize_and_export
(png_bytessize=(6464)):
    
image Image.open(io.BytesIO(png_bytes))
    
resized image.resize(sizeImage.LANCZOS)
    
output io.BytesIO()
    
resized.save(outputformat='PNG')
    return 
output.getvalue()

def process_and_concat(input_fileoutput_filesize=(6464)):
    
png_raw_data find_pngs(input_file)
    
concatenated b''

    
for ipng in enumerate(png_raw_data):
        
small_png resize_and_export(pngsize)
        
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=[
6464],
        
help="Target size (width height)"
    
)

    
args parser.parse_args()
    
process_and_concat(args.inputargs.inputtuple(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!

Go to top


Re: infinite icons theme pack
Just popping in
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.

Go to top


Re: Strange freezes with AmigaGuide documents
Just popping in
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.

Go to top


Re: Strange freezes with AmigaGuide documents
Just popping in
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!

Go to top


Strange freezes with AmigaGuide documents
Just popping in
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

Go to top


Re: AmigaOS port of libsmb2
Just popping in
Just popping in


@salass00

Yes, now compiling with Bebbo's GCC 6.5.0b works fine.

Thanks a lot for fixing!

Go to top


Re: AmigaOS port of libsmb2
Just popping in
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.

Go to top


Re: Dear ImGui
Just popping in
Just popping in


@Capehill

Does this mean we could have Aira Force also running on AmigaOS4?

Go to top


Re: X5000 optimized code compile
Just popping in
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?

Go to top


Re: X5000 optimized code compile
Just popping in
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 modelamigaos
Supported LTO compression algorithms
zlib
gcc version 11.3.0 
(adtools build 11.3.0)

Go to top


Re: X5000 optimized code compile
Just popping in
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.sAssembler messages:
/
T/cc1PpXo7.s:28739Errorunrecognized opcode: `mcrxr'
/T/cc1PpXo7.s:28997: Error: unrecognized opcode: 
`mcrxr'
...


Any ideas what else is needed to make the assembler work?

Thanks,
Josef

Go to top


Re: MOD replay in IMP3 freezes OS4
Just popping in
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.

Go to top


Re: MOD replay in IMP3 freezes OS4
Just popping in
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.

Go to top


Re: MOD replay in IMP3 freezes OS4
Just popping in
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] *** WarningFatal exception in task 0x6919FC30 (AmiDocketask 0xEFEC8600at ip 0x0183B008
kernel 54.30 
(1.1.2021AmigaOne X5000 debug
Machine model
(AmigaOne X5000/20)
Dump of context at 0xEFE33000
Trap type
DSI exception
DSISR
: 00800000  DARCCCCCCD0
No matching page found
Machine State 
(raw): 0x0002F030
Machine State 
(verbose): [Critical Ints on] [ExtInt on] [User] [IAT on] [DAT on]
Instruction pointerin module kernel.debug+0x0003B008 (0x0183B008)
Crashed processAmiDock (0x6919FC30)
DSI verbose error descriptionAccess 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
:
 0183
AFF8815F0000   lwz               r10,0(r31)
 0183
AFFC3D20CCCC   lis               r9,-13108
 
0183B000811F0004   lwz               r8,4(r31)
 0183
B0046129CCCC   ori               r9,r9,52428
>0183B008910A0004   stw               r8,4(r10)
 0183
B00C815F0004   lwz               r10,4(r31)
 0183
B010811F0000   lwz               r8,0(r31)
 0183
B014910A0000   stw               r8,0(r10)
 0183
B018913F0000   stw               r9,0(r31)
 0183
B01C913F0004   stw               r9,4(r31)
msr0x0002B032
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 51HAL_NextTLB 0
MMUCFG 
0x064809C4
mas0 
0x103F0000
mas1 
0xC0000A00
mas2 
0x40000000
mas3 
0x4000003F
mas4 
0x00000100
mas5 
0x00000000
mas6 
0x00000001
mas7 
0x00000000
mas8 
0x00000000
[HAL_DfltTrapHandler] *** WarningFatal exception in task 0x6919F1B0 (imp3etask 0xEFEC8300at ip 0x0183B014
kernel 54.30 
(1.1.2021AmigaOne X5000 debug
Machine model
(AmigaOne X5000/20)
Dump of context at 0xEFEC4000
Trap type
DSI exception
DSISR
: 00800000  DAR00000004
No matching page found
Machine State 
(raw): 0x0002F030
Machine State 
(verbose): [Critical Ints on] [ExtInt on] [User] [IAT on] [DAT on]
Instruction pointerin module kernel.debug+0x0003B014 (0x0183B014)
Crashed processimp3 (0x6919F1B0)
DSI verbose error descriptionAccess 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   XERC000006F  CTR: 0183AF94  LR: 0184AD54

Disassembly of crash site
:
 0183
B0046129CCCC   ori               r9,r9,52428
 
0183B008910A0004   stw               r8,4(r10)
 0183
B00C815F0004   lwz               r10,4(r31)
 0183
B010811F0000   lwz               r8,0(r31)
>0183
B014910A0000   stw               r8,0(r10)
 0183
B018913F0000   stw               r9,0(r31)
 0183
B01C913F0004   stw               r9,4(r31)
 0183
B020813D8BD8   lwz               r9,-29736(r29)
 0183
B0242F890013   cmpwi             cr7,r9,19
 
0183B02840DD002C   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 51HAL_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
:
(
0x6B68F9A0native kernel module kernel.debug+0x0003b014
(0x6B68F9C0native kernel module kernel.debug+0x0004ad54
(0x6B68FA00native kernel module graphics.library.kmod+0x000363d8
(0x6B68FAE0native kernel module intuition.library.kmod+0x00046698
(0x6B68FC80native kernel module intuition.library.kmod+0x0007bbc4
(0x6B68FD20native kernel module intuition.library.kmod+0x0007f29c
(0x6B68FE30native kernel module intuition.library.kmod+0x00029638
(0x6B68FE50native kernel module intuition.library.kmod+0x00065400
(0x6B68FEB0native kernel module intuition.library.kmod+0x00029f34
(0x6B68FEE0native kernel module intuition.library.kmod+0x0007fa04
(0x6B68FF90native kernel module intuition.library.kmod+0x00080164
(0x6B68FFA0native kernel module kernel.debug+0x00026d24
(0x6B68FFB80x00000008 [cannot decode symbol]
(
0x65C7BA340x65C90E82 [cannot decode symbol]

Disassembly of crash site:
 0183
B0046129CCCC   ori               r9,r9,52428
 
0183B008910A0004   stw               r8,4(r10)
 0183
B00C815F0004   lwz               r10,4(r31)
 0183
B010811F0000   lwz               r8,0(r31)
>0183
B014910A0000   stw               r8,0(r10)
 0183
B018913F0000   stw               r9,0(r31)
 0183
B01C913F0004   stw               r9,4(r31)
 0183
B020813D8BD8   lwz               r9,-29736(r29)
 0183
B0242F890013   cmpwi             cr7,r9,19
 
0183B02840DD002C   ble-              cr7,0x183B054
Stack pointer 
(0x6B68F9A0is 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  10sigrec 0x80000000sigwait 0x80001000masked 0x80000000)
                      
HOME/smb2-handler 53.7  (pri   5sigrec 0x80000180sigwait 0xC0000000masked 0x80000000)
                     
MUSIC/smb2-handler 53.7  (pri   5sigrec 0x80000180sigwait 0xC0000000masked 0x80000000)
                    
IDF0/FastFileSystem 53.2  (pri   5sigrec 0x20000000sigwait 0xA8000100masked 0x20000000)
                    
IDF1/FastFileSystem 53.2  (pri   5sigrec 0x20000000sigwait 0xA8000100masked 0x20000000)
                
AMIGA_SSH/ssh2-handler 53.12  (pri   5sigrec 0x80000100sigwait 0xC0000000masked 0x80000000)
                                 
compose.task (pri   1sigrec 0x00000020sigwait 0x00000021masked 0x00000020)
                                    
Workbench (pri   1sigrec 0x80000180sigwait 0x80000000masked 0x80000000)
                
Bildschirmschoner-Bibliothek. (pri   1sigrec 0x04000100sigwait 0xB4001000masked 0x04000000)
                              
IMP3 Debugger (pri   0sigrec 0x00000100sigwait 0x00000100masked 0x00000100)
              
ptreplay.library player process (pri   0sigrec 0x80000100sigwait 0x00000010masked 0x00000000)
                           
NotificationServer (pri   0sigrec 0x04000000sigwait 0xBC001000masked 0x04000000)
                               
TCP/IP Control (pri   0sigrec 0x40000100sigwait 0xF8009080masked 0x40000000)
                                        
Clock (pri   0sigrec 0x02000000sigwait 0x6E001000masked 0x02000000)
                           
vsata disk changer (pri   0sigrec 0x80000000sigwait 0x80000000masked 0x80000000)
                                     
Calendar (pri   0sigrec 0x04000000sigwait 0xDC001000masked 0x04000000)
                                    
hub.usbfd (pri   0sigrec 0x10000000sigwait 0x30000000masked 0x10000000)
                                    
hub.usbfd (pri   0sigrec 0x10000000sigwait 0x30000000masked 0x10000000)
                            
dos_signal_server (pri  -5sigrec 0x00000100sigwait 0x00000100masked 0x00000100)
                                
ELF Collector (pri  -5sigrec 0x00000100sigwait 0x00000100masked 0x00000100)
                             
CPUDock_idleTask (pri -127sigrec 0x00000000sigwait 0x40000000masked 0x00000000)
                                    
idle.task (pri -128sigrec 0x00000000sigwait 0x00000000masked 0x00000000)

Waiting Tasks
                                    hid
.usbfd (pri  10sigrec 0x00000100sigwait 0xE0000000masked 0x00000000)
                      
HOME/smb2-handler 53.7  (pri   5sigrec 0x80000180sigwait 0xC0000000masked 0x80000000)
                     
MUSIC/smb2-handler 53.7  (pri   5sigrec 0x80000180sigwait 0xC0000000masked 0x80000000)
                    
IDF0/FastFileSystem 53.2  (pri   5sigrec 0x20000000sigwait 0xA8000100masked 0x20000000)
                    
IDF1/FastFileSystem 53.2  (pri   5sigrec 0x20000000sigwait 0xA8000100masked 0x20000000)
                
AMIGA_SSH/ssh2-handler 53.12  (pri   5sigrec 0x80000100sigwait 0xC0000000masked 0x80000000)
                                 
compose.task (pri   1sigrec 0x00000020sigwait 0x00000021masked 0x00000020)
                                    
Workbench (pri   1sigrec 0x80000180sigwait 0x80000000masked 0x80000000)
                
Bildschirmschoner-Bibliothek. (pri   1sigrec 0x04000100sigwait 0xB4001000masked 0x04000000)
                              
IMP3 Debugger (pri   0sigrec 0x00000100sigwait 0x00000100masked 0x00000100)
              
ptreplay.library player process (pri   0sigrec 0x80000100sigwait 0x00000010masked 0x00000000)
                           
NotificationServer (pri   0sigrec 0x04000000sigwait 0xBC001000masked 0x04000000)
                               
TCP/IP Control (pri   0sigrec 0x50000100sigwait 0xF8009080masked 0x50000000)
                                        
Clock (pri   0sigrec 0x02000000sigwait 0x6E001000masked 0x02000000)
                           
vsata disk changer (pri   0sigrec 0x80000000sigwait 0x80000000masked 0x80000000)
                                     
Calendar (pri   0sigrec 0x04000000sigwait 0xDC001000masked 0x04000000)
                                    
hub.usbfd (pri   0sigrec 0x10000000sigwait 0x30000000masked 0x10000000)
                                    
hub.usbfd (pri   0sigrec 0x10000000sigwait 0x30000000masked 0x10000000)
                            
dos_signal_server (pri  -5sigrec 0x00000100sigwait 0x00000100masked 0x00000100)
                                
ELF Collector (pri  -5sigrec 0x00000100sigwait 0x00000100masked 0x00000100)
                             
CPUDock_idleTask (pri -127sigrec 0x00000000sigwait 0x40000000masked 0x00000000)
                                    
idle.task (pri -128sigrec 0x00000000sigwait 0x00000000masked 0x00000000)

Suspended Tasks
                                      AmiDock 
(pri 100sigrec 0x00180000sigwait 0x00000010masked 0x00000000)



Kernel command linedebug 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)
r17native 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
:
(
0x69BBEEE0native kernel module kernel.debug+0x0003b008
(0x69BBEF00native kernel module kernel.debug+0x0004ad54
(0x69BBEF40native kernel module graphics.library.kmod+0x0001d5cc
(0x69BBEFC0native kernel module kernel.debug+0x000a13b8
(0x69BBF020native kernel module graphics.library.kmod+0x000cdb44
(0x69BBF0B0native kernel module graphics.library.kmod+0x0001d88c
(0x69BBF100module AmiDock at 0x7FB0A724 (section 0 0xC700)
(
0x69BBF1B0module AmiDock at 0x7FB1CE58 (section 0 0x1EE34)
(
0x69BBF380module AmiDock at 0x7FB02D84 (section 0 0x4D60)
(
0x69BBF810module AmiDock at 0x7FAFFCE4 (section 0 0x1CC0)
(
0x69BBF8A0module AmiDock at 0x7FB00330 (section 0 0x230C)
(
0x69BBFCF0module AmiDock at 0x7FB00560 (section 0 0x253C)
(
0x69BBFD10native kernel module newlib.library.kmod+0x00002614
(0x69BBFD60native kernel module newlib.library.kmod+0x000032f0
(0x69BBFF10native kernel module newlib.library.kmod+0x00003864
(0x69BBFF40AmiDock:_start()+0x1e0 (section 1 0x1DC)
(
0x69BBFF90native kernel module dos.library.kmod+0x0002a458
(0x69BBFFC0native kernel module kernel.debug+0x00088aec
(0x69BBFFD0native kernel module kernel.debug+0x00088b64

Disassembly of crash site
:
 0183
AFF8815F0000   lwz               r10,0(r31)
 0183
AFFC3D20CCCC   lis               r9,-13108
 
0183B000811F0004   lwz               r8,4(r31)
 0183
B0046129CCCC   ori               r9,r9,52428
>0183B008910A0004   stw               r8,4(r10)
 0183
B00C815F0004   lwz               r10,4(r31)
 0183
B010811F0000   lwz               r8,0(r31)
 0183
B014910A0000   stw               r8,0(r10)
 0183
B018913F0000   stw               r9,0(r31)
 0183
B01C913F0004   stw               r9,4(r31)
Stack pointer (0x69BBEEE0is 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 (SegList0x19862A61)
ADDR6FFA4000 82D48B00 00000000 00000000 00000000 00000000 00000000 69BBED50
Page information
:
Page not found

Ready Tasks
                                 HID Joystick 
(pri  10sigrec 0x80000000sigwait 0x80001000masked 0x80000000)
                  
EHCI Controller Task Unit 1 (pri  15sigrec 0x00000000sigwait 0x82000000masked 0x00000000)
                                    
USB stack (pri  18sigrec 0x00000000sigwait 0xF800D000masked 0x00000000)
                                 
HID Joystick (pri  10sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                      
HOME/smb2-handler 53.7  (pri   5sigrec 0x80000180sigwait 0xC0000000masked 0x80000000)
                     
MUSIC/smb2-handler 53.7  (pri   5sigrec 0x80000180sigwait 0xC0000000masked 0x80000000)
                
AMIGA_SSH/ssh2-handler 53.12  (pri   5sigrec 0x80000100sigwait 0xC0000000masked 0x80000000)
                    
IDF0/FastFileSystem 53.2  (pri   5sigrec 0x20000000sigwait 0xA8000100masked 0x20000000)
                    
IDF1/FastFileSystem 53.2  (pri   5sigrec 0x20000000sigwait 0xA8000100masked 0x20000000)
                                 
compose.task (pri   1sigrec 0x00000020sigwait 0x00000021masked 0x00000020)
                                    
Workbench (pri   1sigrec 0x80000180sigwait 0x80000000masked 0x80000000)
                           
NotificationServer (pri   0sigrec 0x04000000sigwait 0xBC001000masked 0x04000000)
              
ptreplay.library player process (pri   0sigrec 0x80000100sigwait 0x00000010masked 0x00000000)
                               
Background CLI (pri   0sigrec 0x00000100sigwait 0x00000010masked 0x00000000)
                              
IMP3 Debugger (pri   0sigrec 0x00000100sigwait 0x00000100masked 0x00000100)
                               
TCP/IP Control (pri   0sigrec 0x50000100sigwait 0xF8009080masked 0x50000000)
                                    
hub.usbfd (pri   0sigrec 0x10000000sigwait 0x30000000masked 0x10000000)
                                    
hub.usbfd (pri   0sigrec 0x10000000sigwait 0x30000000masked 0x10000000)
                            
dos_signal_server (pri  -5sigrec 0x00004100sigwait 0x00000100masked 0x00000100)
                                
ELF Collector (pri  -5sigrec 0x00000100sigwait 0x00000100masked 0x00000100)
                             
CPUDock_idleTask (pri -127sigrec 0x00000000sigwait 0x40000000masked 0x00000000)
                                    
idle.task (pri -128sigrec 0x00000000sigwait 0x00000000masked 0x00000000)

Waiting Tasks
                                 HID Joystick 
(pri  10sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                                    
hid.usbfd (pri  10sigrec 0x00000100sigwait 0xE0000000masked 0x00000000)
                      
HOME/smb2-handler 53.7  (pri   5sigrec 0x80000180sigwait 0xC0000000masked 0x80000000)
                     
MUSIC/smb2-handler 53.7  (pri   5sigrec 0x80000180sigwait 0xC0000000masked 0x80000000)
                
AMIGA_SSH/ssh2-handler 53.12  (pri   5sigrec 0x80000100sigwait 0xC0000000masked 0x80000000)
                    
IDF0/FastFileSystem 53.2  (pri   5sigrec 0x20000000sigwait 0xA8000100masked 0x20000000)
                    
IDF1/FastFileSystem 53.2  (pri   5sigrec 0x20000000sigwait 0xA8000100masked 0x20000000)
                                 
compose.task (pri   1sigrec 0x00000020sigwait 0x00000021masked 0x00000020)
                                    
Workbench (pri   1sigrec 0x80000180sigwait 0x80000000masked 0x80000000)
                           
NotificationServer (pri   0sigrec 0x04000000sigwait 0xBC001000masked 0x04000000)
              
ptreplay.library player process (pri   0sigrec 0x80000100sigwait 0x00000010masked 0x00000000)
                               
Background CLI (pri   0sigrec 0x00000100sigwait 0x00000010masked 0x00000000)
                              
IMP3 Debugger (pri   0sigrec 0x00000100sigwait 0x00000100masked 0x00000100)
                               
TCP/IP Control (pri   0sigrec 0x50000100sigwait 0xF8009080masked 0x50000000)
                                    
hub.usbfd (pri   0sigrec 0x10000000sigwait 0x30000000masked 0x10000000)
                                    
hub.usbfd (pri   0sigrec 0x10000000sigwait 0x30000000masked 0x10000000)
                            
dos_signal_server (pri  -5sigrec 0x00004100sigwait 0x00000100masked 0x00000100)
                                
ELF Collector (pri  -5sigrec 0x00000100sigwait 0x00000100masked 0x00000100)
                             
CPUDock_idleTask (pri -127sigrec 0x00000000sigwait 0x40000000masked 0x00000000)
                                    
idle.task (pri -128sigrec 0x00000000sigwait 0x00000000masked 0x00000000)

Suspended Tasks

Go to top


Re: MOD replay in IMP3 freezes OS4
Just popping in
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.2021AmigaOne X5000 release
Machine model
(AmigaOne X5000/20)
Dump of context at 0xEFCF2000
Trap type
DSI exception
DSISR
: 00800000  DAR00000004
No matching page found
Machine State 
(raw): 0x0002F030
Machine State 
(verbose): [Critical Ints on] [ExtInt on] [User] [IAT on] [DAT on]
Instruction pointerin module kernel+0x000331C0 (0x018331C0)
Crashed processimp3 (0x6B87B620)
DSI verbose error descriptionAccess 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   XERA000007E  CTR: 018331BC  LR01C678C8

Disassembly of crash site
:
 018331
B081240000   lwz               r9,0(r4)
 018331
B490890004   stw               r4,4(r9)
 018331
B84E800020   blr
 
018331BC81240000   lwz               r9,0(r4)
>018331
C090850004   stw               r4,4(r5)
 018331
C491250000   stw               r9,0(r5)
 018331
C890A40000   stw               r5,0(r4)
 018331
CC81250000   lwz               r9,0(r5)
 018331
D090A90004   stw               r5,4(r9)
 018331
D44E800020   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 52HAL_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
:
(
0x6B3FB300native kernel module kernel+0x000331c0
(0x6B3FB330native kernel module graphics.library.kmod+0x0004f4c8
(0x6B3FB410native kernel module graphics.library.kmod+0x00006ecc
(0x6B3FB440native kernel module graphics.library.kmod+0x00006ff0
(0x6B3FB4A0native kernel module graphics.library.kmod+0x000cd6d8
(0x6B3FB4E0native kernel module graphics.library.kmod+0x000cdcac
(0x6B3FB570native kernel module graphics.library.kmod+0x0000a0cc
(0x6B3FB850native kernel module graphics.library.kmod+0x00008ff8
(0x6B3FB8D0native kernel module intuition.library.kmod+0x0004d994
(0x6B3FB9A0native kernel module intuition.library.kmod+0x000304bc
(0x6B3FBCB0native kernel module graphics.library.kmod+0x000cc340
(0x6B3FBCF0native kernel module graphics.library.kmod+0x000cc440
(0x6B3FBD60native kernel module intuition.library.kmod+0x0007f364
(0x6B3FBE70native kernel module intuition.library.kmod+0x00029638
(0x6B3FBE90native kernel module intuition.library.kmod+0x00065400
(0x6B3FBEF0native kernel module intuition.library.kmod+0x00029f34
(0x6B3FBF20native kernel module intuition.library.kmod+0x0007fa04
(0x6B3FBFD0native kernel module intuition.library.kmod+0x00080164
(0x6B3FBFE0native kernel module kernel+0x00020094
(0x6B3FBFF00x63F67CCC [cannot decode symbol]

Disassembly of crash site:
 018331
B081240000   lwz               r9,0(r4)
 018331
B490890004   stw               r4,4(r9)
 018331
B84E800020   blr
 
018331BC81240000   lwz               r9,0(r4)
>018331
C090850004   stw               r4,4(r5)
 018331
C491250000   stw               r9,0(r5)
 018331
C890A40000   stw               r5,0(r4)
 018331
CC81250000   lwz               r9,0(r5)
 018331
D090A90004   stw               r5,4(r9)
 018331
D44E800020   blr
Stack pointer 
(0x6B3FB300is inside bounds
Redzone is OK 
(4)

68k register dump
DATA
00000001 00000000 0000FFFF 00000002 00000003 00000007 00000057 00000000
----> 00000001 "imp3" Hunk 0000 Offset 00000000 (SegList0x191098A9)
ADDR6FFA4000 830B4F00 FFFFFFFF 6B3E0692 6C6C8050 6B3E13EE 6F0A24D0 6B3FB8D0
Page information
:
Page not found

Ready Tasks
                                 HID Joystick 
(pri  10sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                                    
hid.usbfd (pri  10sigrec 0x00000100sigwait 0xE0000000masked 0x00000000)
                                 
TN ShadowNet (pri   5sigrec 0x00000180sigwait 0x00000100masked 0x00000100)
                           
WinFrame 1 Process (pri   5sigrec 0x00800000sigwait 0xFF800000masked 0x00800000)
                      
HOME/smb2-handler 53.7  (pri   5sigrec 0x80000180sigwait 0xC0000000masked 0x80000000)
                     
MUSIC/smb2-handler 53.7  (pri   5sigrec 0x80000180sigwait 0xC0000000masked 0x80000000)
                
AMIGA_SSH/ssh2-handler 53.12  (pri   5sigrec 0x80000100sigwait 0xC0000000masked 0x80000000)
                    
IDF0/FastFileSystem 53.2  (pri   5sigrec 0x20000000sigwait 0xA8000100masked 0x20000000)
                    
IDF1/FastFileSystem 53.2  (pri   5sigrec 0x20000000sigwait 0xA8000100masked 0x20000000)
                                 
compose.task (pri   1sigrec 0x00000020sigwait 0x00000021masked 0x00000020)
                                    
Workbench (pri   1sigrec 0x80000180sigwait 0x80000000masked 0x80000000)
              
ptreplay.library player process (pri   0sigrec 0x80000100sigwait 0x00000010masked 0x00000000)
                           
NotificationServer (pri   0sigrec 0x04000000sigwait 0xBC001000masked 0x04000000)
                                     
TuneNetR (pri   0sigrec 0x00000100sigwait 0x00000100masked 0x00000100)
                                      
TuneNet (pri   0sigrec 0x81000100sigwait 0x00000100masked 0x00000100)
                              
IMP3 Debugger (pri   0sigrec 0x00000100sigwait 0x00000100masked 0x00000100)
                               
TCP/IP Control (pri   0sigrec 0x50000100sigwait 0xF8009080masked 0x50000000)
                                      
AmiDock (pri   0sigrec 0x00180000sigwait 0x00000010masked 0x00000000)
                                    
hub.usbfd (pri   0sigrec 0x10000000sigwait 0x30000000masked 0x10000000)
                                    
hub.usbfd (pri   0sigrec 0x10000000sigwait 0x30000000masked 0x10000000)
                                        
Clock (pri   0sigrec 0x02000000sigwait 0x6E001000masked 0x02000000)
                                     
Calendar (pri   0sigrec 0x04000000sigwait 0xDC001000masked 0x04000000)
                                     
TuneNetR (pri  -1sigrec 0x00000100sigwait 0x00000100masked 0x00000100)
                            
dos_signal_server (pri  -5sigrec 0x00004000sigwait 0x0000F000masked 0x00004000)
                                
ELF Collector (pri  -5sigrec 0x00000100sigwait 0x00000100masked 0x00000100)
                             
CPUDock_idleTask (pri -127sigrec 0x00000000sigwait 0x40000000masked 0x00000000)
                                    
idle.task (pri -128sigrec 0x00000000sigwait 0x00000000masked 0x00000000)

Waiting Tasks
                     DH0
/NGFileSystem 54.106  (pri  10sigrec 0x00000100sigwait 0xF0000000masked 0x00000000)
                     
DH1/NGFileSystem 54.106  (pri  10sigrec 0x00000100sigwait 0xF0000000masked 0x00000000)
                  
EHCI Controller Task Unit 0 (pri  15sigrec 0x00000000sigwait 0xBE009000masked 0x00000000)
                                     
TuneNetR (pri  10sigrec 0x00000000sigwait 0x02000000masked 0x00000000)
                      
ahi.device Unit Process (pri  50sigrec 0x00000100sigwait 0xF000C000masked 0x00000000)
                     
DH0/NGFileSystem 54.106  (pri  10sigrec 0x00000100sigwait 0xF0000000masked 0x00000000)
                     
DH1/NGFileSystem 54.106  (pri  10sigrec 0x00000100sigwait 0xF0000000masked 0x00000000)
                  
EHCI Controller Task Unit 0 (pri  15sigrec 0x00000000sigwait 0xBE009000masked 0x00000000)
                               
P50x0 Ethernet (pri  20sigrec 0x00000000sigwait 0x00001000masked 0x00000000)
            
sii3114ide.device chip 0 port 0 (pri  12sigrec 0x00008000sigwait 0xC0000000masked 0x00000000)
                                        
rx_pm (pri 100sigrec 0x00000000sigwait 0x80000001masked 0x00000000)
                                 
input.device (pri  20sigrec 0x00000000sigwait 0x00000010masked 0x00000000)
                              
CygnusEd ver(pri   1sigrec 0x00000100sigwait 0x4E000000masked 0x00000000)
                           
vsata disk changer (pri   0sigrec 0x00000000sigwait 0x80000000masked 0x00000000)
                      
ICD1/CDFileSystem 53.8  (pri  10sigrec 0x00000000sigwait 0x00000100masked 0x00000000)
                      
ICD0/CDFileSystem 53.8  (pri  10sigrec 0x00000000sigwait 0x00000100masked 0x00000000)
                   
DH2/SmartFilesystem 1.293  (pri  11sigrec 0x00000000sigwait 0x00000100masked 0x00000000)
                       
CD0/CDFileSystem 53.8  (pri  10sigrec 0x00000000sigwait 0x00000100masked 0x00000000)
                                
serial.device (pri   1sigrec 0x00000000sigwait 0x7E000000masked 0x00000000)
                                    
hub.usbfd (pri   0sigrec 0x08000000sigwait 0x30000000masked 0x00000000)
                       
CygnusEd mouse blanker (pri  10sigrec 0x00000000sigwait 0x0000F000masked 0x00000000)
                                        
rx_gc (pri 100sigrec 0x00000000sigwait 0x80000001masked 0x00000000)
                      
p50x0sata.device Port 0 (pri  12sigrec 0x10000000sigwait 0xC0007000masked 0x00000000)
                           
dos_filedir_notify (pri   5sigrec 0x80000000sigwait 0x40001000masked 0x00000000)
                               
TN_PlayMasterR (pri   5sigrec 0x00000000sigwait 0x0000A001masked 0x00000000)
                         
TCP/IP Configuration (pri   0sigrec 0x00000100sigwait 0xF8003000masked 0x00000000)
                        
appdir envarc manager (pri -50sigrec 0x00000000sigwait 0x80005000masked 0x00000000)
                               
ramlib.support (pri  -2sigrec 0x00000000sigwait 0x80005000masked 0x00000000)
                                       
ramlib (pri   1sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                                   
sdkbrowser (pri  -1sigrec 0x00000100sigwait 0xB4001002masked 0x00000000)
                                 
ClickToFront (pri  21sigrec 0x00000100sigwait 0xE000D000masked 0x00000000)
                    
URL/launch-handler 53.39  (pri   5sigrec 0x00000100sigwait 0x80000000masked 0x00000000)
              
TEXTCLIP/textclip-handler 53.4  (pri   3sigrec 0x00000100sigwait 0x80000000masked 0x00000000)
                  
RANDOM/Random-Handler 52.1  (pri   5sigrec 0x00000000sigwait 0x00000100masked 0x00000000)
                                 
Mounter Task (pri  -1sigrec 0x00000000sigwait 0xB0001000masked 0x00000000)
                                  
Mounter GUI (pri   0sigrec 0x00000000sigwait 0x80007000masked 0x00000000)
                    
Mounter Companion Process (pri  -1sigrec 0x00000000sigwait 0x80003000masked 0x00000000)
                     
Workbench DosList Notify (pri   1sigrec 0x00000100sigwait 0x00003000masked 0x00000000)
                       
CON/con-handler 53.82  (pri   5sigrec 0x00000000sigwait 0xA0000100masked 0x00000000)
                                
Shell Process (pri   0sigrec 0x00000000sigwait 0x00000100masked 0x00000000)
                       
CON/con-handler 53.82  (pri   5sigrec 0x00000000sigwait 0xB0000100masked 0x00000000)
            
application.library messageserver (pri   0sigrec 0x00000000sigwait 0xC0000000masked 0x00000000)
                          
ScreenBlankerEngine (pri   0sigrec 0x00000100sigwait 0xD8001000masked 0x00000000)
                       
CON/con-handler 53.82  (pri   5sigrec 0x00000000sigwait 0xA0000100masked 0x00000000)
                   
DH2/SmartFilesystem 1.293  (pri  10sigrec 0x00000000sigwait 0xE0000100masked 0x00000000)
              
ContextMenus Command Dispatcher (pri   1sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                                 
ContextMenus (pri   0sigrec 0x00000100sigwait 0xE0001000masked 0x00000000)
                                   
RexxMaster (pri   4sigrec 0x00000100sigwait 0xC0000000masked 0x00000000)
                      
clipview.library server (pri   0sigrec 0x00000000sigwait 0xD8003000masked 0x00000000)
                                   
« IPrefs » (pri   0sigrec 0x00000000sigwait 0x0000F000masked 0x00000000)
                                      
AsyncWB (pri   0sigrec 0x00000100sigwait 0xC0001000masked 0x00000000)
                                       
InfoWB (pri   0sigrec 0x00000100sigwait 0xF8001000masked 0x00000000)
           
texteditor.gadget Clipboard Server (pri   1sigrec 0x00000100sigwait 0x80000000masked 0x00000000)
                          
select.gadget prefs (pri   0sigrec 0x00000100sigwait 0x80001000masked 0x00000000)
                       
CON/con-handler 53.82  (pri   5sigrec 0x00000000sigwait 0xA0000100masked 0x00000000)
                       
CON/con-handler 53.82  (pri   5sigrec 0x00000000sigwait 0xA0000100masked 0x00000000)
                       
CON/con-handler 53.82  (pri   5sigrec 0x00000000sigwait 0xA0000100masked 0x00000000)
                       
CON/con-handler 53.82  (pri   5sigrec 0x00000000sigwait 0xA0000100masked 0x00000000)
                                     
DefIcons (pri   0sigrec 0x00000100sigwait 0x80009000masked 0x00000000)
                       
CON/con-handler 53.82  (pri   5sigrec 0x00000000sigwait 0xA0000100masked 0x00000000)
                       
CON/con-handler 53.82  (pri   5sigrec 0x00000000sigwait 0xA0000100masked 0x00000000)
                       
CON/con-handler 53.82  (pri   5sigrec 0x00000000sigwait 0xA0000100masked 0x00000000)
                       
CON/con-handler 53.82  (pri   5sigrec 0x00000000sigwait 0xA0000100masked 0x00000000)
                         
string.gadget server (pri   1sigrec 0x00000100sigwait 0x40000000masked 0x00000000)
                      
p50x0sata.device Port 1 (pri  12sigrec 0x10000000sigwait 0xC0007000masked 0x00000000)
                   
Workbench Clipboard Server (pri   1sigrec 0x00000100sigwait 0x80000000masked 0x00000000)
                                   
TCP/IP Log (pri   0sigrec 0x00000000sigwait 0x80003000masked 0x00000000)
                                      
ConClip (pri   0sigrec 0x00000000sigwait 0x80000000masked 0x00000000)
                      
diskimage.device unit 1 (pri   4sigrec 0x00000100sigwait 0xC0000000masked 0x00000000)
                      
diskimage.device unit 0 (pri   4sigrec 0x00000100sigwait 0xC0000000masked 0x00000000)
                      
diskimage.device unit 5 (pri   4sigrec 0x00000100sigwait 0xC0000000masked 0x00000000)
                      
diskimage.device unit 4 (pri   4sigrec 0x00000100sigwait 0xC0000000masked 0x00000000)
                               
camdmidi.usbfd (pri  45sigrec 0x00000100sigwait 0x60001000masked 0x00000000)
                               
Camd Wait Proc (pri   5sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                            
USB stack Process (pri   0sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                       
AUDIO/AHI-Handler 6.2  (pri   5sigrec 0x00000000sigwait 0x00000100masked 0x00000000)
                 
APPDIR/appdir-handler 54.17  (pri   5sigrec 0x00000100sigwait 0x80000000masked 0x00000000)
                         
MassStorage Notifier (pri   0sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                                  
DST watcher (pri   0sigrec 0x00000000sigwait 0xC0000000masked 0x00000000)
                       
RAM/ram-handler 54.24  (pri  10sigrec 0x00000100sigwait 0x80000000masked 0x00000000)
                       
ENV/env-handler 54.18  (pri   5sigrec 0x00000100sigwait 0x80000000masked 0x00000000)
                       
CON/con-handler 53.82  (pri   5sigrec 0x00000000sigwait 0xA0000100masked 0x00000000)
                       
RAW/con-handler 53.82  (pri   5sigrec 0x00000000sigwait 0xA0000100masked 0x00000000)
                       
CON/con-handler 53.82  (pri   5sigrec 0x00000000sigwait 0xA0000100masked 0x00000000)
                          
SFS DosList handler (pri  19sigrec 0x00000000sigwait 0x80000000masked 0x00000000)
                             
dos_nbmd_process (pri   5sigrec 0x00000000sigwait 0x00001100masked 0x00000000)
                             
dos_lock_handler (pri   5sigrec 0x00000000sigwait 0x00001100masked 0x00000000)
                                    
hub.usbfd (pri   0sigrec 0x00000000sigwait 0x30000000masked 0x00000000)
                     
Exec Command and Control (pri  30sigrec 0x00000000sigwait 0x80000000masked 0x00000000)
                       
DMA2 Channel 4 Handler (pri   0sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                       
DMA1 Channel 4 Handler (pri   0sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                       
DMA2 Channel 3 Handler (pri   0sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                       
DMA1 Channel 3 Handler (pri   0sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                       
DMA2 Channel 2 Handler (pri   0sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                       
DMA1 Channel 2 Handler (pri   0sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                       
DMA2 Channel 1 Handler (pri   0sigrec 0x00000000sigwait 0x80001000masked 0x00000000)
                       
DMA1 Channel 1 Handler (pri   0sigrec 0x00000000sigwait 0x80001000masked 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...

Go to top



TopTop
« 1 (2) 3 4 5 ... 8 »



Polls
Running AmigaOS 4 on?
AmigaOne SE/XE or microA1 12% (26)
Pegasos2 3% (8)
X5000 22% (48)
X1000 14% (30)
A1222 8% (19)
Sam 440/460 18% (40)
Classic PowerPC Amiga 2% (6)
WinUAE emulation 7% (16)
Qemu emulation 9% (21)
Total Votes: 214
The poll closed at 2025/12/1 12:00
6 Comments


Powered by XOOPS 2.0 © 2001-2024 The XOOPS Project