Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
277 user(s) are online (104 user(s) are browsing Forums)

Members: 2
Guests: 275

pvanni, Maijestro, more...

Support us!

Headlines

 
  Register To Post  

« 1 2 3 (4) 5 »
Re: A new editor for AmigaOS 4 is in the works
Site Builder
Site Builder


See User information
@Capehill

Quote:
Please consider moving $VER and $STACK into C file.


Yeah, I already have that moved for the next release. Thank you for mentioning it.

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: A new editor for AmigaOS 4 is in the works
Amigans Defender
Amigans Defender


See User information
@TearsOfMe

Quote:
The programm crash right away from start.

I get the same crash at program startup on my emulated OS4 system. My crashlog looks exactly the same.

@walkero

The system is WinUAE running OS4.1 FE Update 1. Perhaps there's something that requires Update 2?

The Rear Window blog

AmigaOne X5000 @ 2GHz / 4GB RAM / Radeon RX 560 / ESI Juli@ / AmigaOS 4.1 Final Edition
SAM440ep-flex @ 667MHz / 1GB RAM / Radeon 9250 / AmigaOS 4.1 Final Edition
Go to top
Re: A new editor for AmigaOS 4 is in the works
Site Builder
Site Builder


See User information
@trixie
To be honest, although I haven't tried it yet, it should work fine in update 1. I have an emulated environment somewhere. I will give it a try and let you know.

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: A new editor for AmigaOS 4 is in the works
Just can't stay away
Just can't stay away


See User information
@walkero

I tried to test this program on a 16-bit WB screenmode and then it crashed similarly than TearsOfMe reported. Looks like some nullptr issue.

Do you know what this is:

module lite at 0x7E2C51C8 (section 0 @ 0x51A4)

Go to top
Re: A new editor for AmigaOS 4 is in the works
Site Builder
Site Builder


See User information
@Capehill
Let me have a look and let you know. But it shouldn't crash just because you started it in 16bit.

Try to remove the .config file and test it again.

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: A new editor for AmigaOS 4 is in the works
Site Builder
Site Builder


See User information
Yesterday I released a new version of LiteXL v2.0.3r2, which brings some fixes and for the first time the MorphOS version to the public.

You can download it from https://git.walkero.gr/walkero/lite-xl/releases/tag/v2.0.3r2
and soon from OS4Depot.

This release brings you the following:

### Added
- First public MorphOS version released

### Changed
- Merged source code for both AmigaOS 4 and MorphOS
- Moved the declaration of the $VER and $STACK for the AmigaOS 4 version,
so to happen only once (reported by capehill)

### Fixed
- Fixed the usage of NumPad (reported by root)

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: A new editor for AmigaOS 4 is in the works
Home away from home
Home away from home


See User information
@walkero

Any chance to introduce a scrollbar?

Go to top
Re: A new editor for AmigaOS 4 is in the works
Site Builder
Site Builder


See User information
@samo79
What do you mean? There is a scrollbar.

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: A new editor for AmigaOS 4 is in the works
Amigans Defender
Amigans Defender


See User information
@walkero

Quote:
What do you mean? There is a scrollbar.

Not on my system

The Rear Window blog

AmigaOne X5000 @ 2GHz / 4GB RAM / Radeon RX 560 / ESI Juli@ / AmigaOS 4.1 Final Edition
SAM440ep-flex @ 667MHz / 1GB RAM / Radeon 9250 / AmigaOS 4.1 Final Edition
Go to top
Re: A new editor for AmigaOS 4 is in the works
Site Builder
Site Builder


See User information
There is a small scrollbar at the side of the page. it is not part of the window, but there is absolutely a scollbar. You don't need actually to click on it to grab it with your mouse. Even a few pixels further can grab it.

Now if you speak for a window scroll bar, I am not sure I am able to do it it, but will check this out. But since the application uses SDL I am not sure how easy is to get that and assign it to the window border.

Also, what will happen if you have multiple files opened in different positions (left, right and bottom)? That would need to change on the fly the window scrollbar based on the actively editing file, which might not make sense.

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: A new editor for AmigaOS 4 is in the works
Just can't stay away
Just can't stay away


See User information
The scrollbar is there bit too thin, if you want it wider, just edit

data/core/style.lua

and the 6th line should be:
style.scrollbar_size = common.round(4 * SCALE)

and change (f.ex) to:
style.scrollbar_size = common.round(10 * SCALE)

or choose you another value: 12, 20, ...

AOS4.1/SAM460ex/PPC460EX-1155MHZ/2048MB/RadeonRX550/HDD/DVDRW
Go to top
Re: A new editor for AmigaOS 4 is in the works
Site Builder
Site Builder


See User information
@jabirulo
Thank you for this tip. That's one way to do it, but in a future update, you lose it. Please consider doing that in the config file. It is always better to not touch the editor code unless you really have to.

Open your configuration file by clicking on the cog icon at the toolbar (bottom left, 6th icon) and add the following line at the end of the file, and then save it.

style.scrollbar_size = 10

Bigger number, bigger scrollbar.

This way, you can transfer the .config folder to a new installation (i.e. a new release) and have everything as they were before.

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: A new editor for AmigaOS 4 is in the works
Just can't stay away
Just can't stay away


See User information
@walkero

THX for tip
Restored value on style.lua and using now in init.lua:

style.scrollbar_size = 10 * SCALE

Go to top
Re: A new editor for AmigaOS 4 is in the works
Quite a regular
Quite a regular


See User information
@walkero

I missed this topic :) so, thank to afxgroup for sharing link for this topic on my question for text editor for os4 with html syntax highlighting.

Great pice of sw with nice looking gui, fast.. - very useful if you ask me!

Thank you on this great app!

Amiga x5000 ı o2o ı 4GB RAM ı RadeonRX580 | SBlaster Audigy Fx - AmigaOS4.1 FInal Edition

A1200 sandwich

Warp - Croatian Amiga portal
Go to top
Re: A new editor for AmigaOS 4 is in the works
Site Builder
Site Builder


See User information
@voodoo
I am glad it is useful for you and you liked it. I find it really convenient, and I do all my development work using that. This means that it is easier to find bugs and fix them. I had some fixed today and will continue working on it.

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: A new editor for AmigaOS 4 is in the works
Just popping in
Just popping in


See User information
Since I updated the newlib via AmiUpdate yesterday LiteXL is crashing with a GrimpReaper.

Crash log for task "lite"
Generated by GrimReaper 53.19
Crash occured in module newlib
.library.kmod at address 0x0227AE08
Type of crash
: DSI (Data Storage Interrupt) exception
Alert number
: 0x80000003

Register dump
:
GPR (General Purpose Registers):
   
0: 6FFB5340 5D36ADC0 00000000 5D443304 00000000 601D200C 00000001 80800000 
   8
: 0212FF08 5D443304 00000000 0227ADE4 000007B0 5D3BB650 5C6C4F98 00000001 
  16
: 00000040 00000004 5BCC98C0 5C6C5000 5C1019F8 5C6C3280 5D370000 00000045 
  24
: 00000046 00000001 5C1019E8 00000000 5D3B0000 6FC43000 00000000 5D443304 


FPR 
(Floating Point Registers, NaN = Not a Number):
   
0:             -nan          13442.8            1e-08    -2.76243e+304 
   4
:    -2.76243e+304       4.5036e+15             1128               44 
   8
:             1084       4.5036e+15       4.5036e+15       4.5036e+15 
  12
:                0      2.14748e+09                0                0 
  16
:                0                0                0                0 
  20
:                0                0                0                0 
  24
:                0                0                0                0 
  28
:                0                0                0                0 

FPSCR 
(Floating Point Status and Control Register): 0x82064000


SPRs 
(Special Purpose Registers):
           
Machine State (msr) : 0x0200F030
                Condition 
(cr) : 0x5BB92D90
      Instruction Pointer 
(ip) : 0x0227AE08
       Xtended Exception 
(xer) : 0x0203EF34
                   Count 
(ctr) : 0x00000000
                     Link 
(lr) : 0x02972480
            DSI Status 
(dsisr) : 0x5BB92DB0
            Data Address 
(dar) : 0x2A442882



680x0 emulated registers
:
DATA: 919FC400 00000000 00000000 00000000 00000000 00000000 00000000 00000000 
ADDR
: 6FFA4000 919F6400 00000000 00000000 00000000 00000000 00000000 5D36AC40 
FPU0
:                0                0                0                0 
FPU4
:                0                0                0                0 



Symbol info
:
Instruction pointer 0x0227AE08 belongs to module "newlib.library.kmod" (HUNK/Kickstart)

Stack trace:
    
native kernel module newlib.library.kmod+0x00032f48
    module lite at 0x7F3A5880 
(section 0 @ 0x885C)
    
module lite at 0x7F485C8C (section 0 @ 0xE8C68)
    
module lite at 0x7F4920AC (section 0 @ 0xF5088)
    
module lite at 0x7F4860B0 (section 0 @ 0xE908C)
    
module lite at 0x7F485480 (section 0 @ 0xE845C)
    
module lite at 0x7F486428 (section 0 @ 0xE9404)
    
module lite at 0x7F483518 (section 0 @ 0xE64F4)
    
module lite at 0x7F49A034 (section 0 @ 0xFD010)
    
module lite at 0x7F485C8C (section 0 @ 0xE8C68)
    
module lite at 0x7F4920AC (section 0 @ 0xF5088)
    
module lite at 0x7F4860B0 (section 0 @ 0xE908C)
    
module lite at 0x7F485480 (section 0 @ 0xE845C)
    
module lite at 0x7F486428 (section 0 @ 0xE9404)
    
module lite at 0x7F483518 (section 0 @ 0xE64F4)
    
module lite at 0x7F39F098 (section 0 @ 0x2074)
    
native kernel module newlib.library.kmod+0x00002614
    native kernel module newlib
.library.kmod+0x000032f0
    native kernel module newlib
.library.kmod+0x00003864
    lite
:_start()+0x1e0 (section 1 @ 0x1B3C)
    
native kernel module dos.library.kmod+0x0002a458
    native kernel module kernel
+0x00059e04
    native kernel module kernel
+0x00059e7c

PPC disassembly
:
 
0227ae00: 40820034   bne-              0x227AE34
 0227ae04
: 3ce08080   lis               r7,-32640
*0227ae08: 81040000   lwz               r8,0(r4)
 
0227ae0c: 60e78080   ori               r7,r7,32896
 0227ae10
: 48000010   b                 0x227AE20

System information
:

CPU 
 Model
: P.A. Semi PWRficient PA6T-1682M VB1 
 CPU speed
: 1800 MHz 
 FSB speed
: 900 MHz 
 Extensions
: altivec 

Machine 
 Machine name
: AmigaOne X1000 
 Memory
: 2097152 KB 
 Extensions
: bus.pci bus.pcie 

Expansion buses 
 PCI
/AGP 
  00
:1D.0 Vendor 0x1959 Device 0xA004 
   Range 0
: 007F03F8 - 007F0400 (IO) 
  
00:1D.1 Vendor 0x1959 Device 0xA004 
   Range 0
: 007F02F8 - 007F0300 (IO) 
  
00:1A.0 Vendor 0x1959 Device 0xA007 
  00
:00.0 Vendor 0x1959 Device 0xA001 
  00
:01.0 Vendor 0x1959 Device 0xA009 
  00
:14.3 Vendor 0x1959 Device 0xA005 
  00
:1C.0 Vendor 0x1959 Device 0xA003 
   Range 0
: 007F0200 - 007F0240 (IO) 
  
00:1C.1 Vendor 0x1959 Device 0xA003 
   Range 0
: 007F0240 - 007F0280 (IO) 
  
00:1C.2 Vendor 0x1959 Device 0xA003 
   Range 0
: 007F0280 - 007F02C0 (IO) 
  
00:11.3 Vendor 0x1959 Device 0xA002 
  00
:11.2 Vendor 0x1959 Device 0xA002 
  00
:11.1 Vendor 0x1959 Device 0xA002 
  00
:11.0 Vendor 0x1959 Device 0xA002 
  00
:10.0 Vendor 0x1959 Device 0xA002 
  00
:03.0 Vendor 0x1959 Device 0xA00C 
  00
:04.0 Vendor 0x1959 Device 0xA00A 
  00
:05.0 Vendor 0x1959 Device 0xA00A 
  00
:08.0 Vendor 0x1959 Device 0xA000 
  00
:09.0 Vendor 0x1959 Device 0xA000 
  00
:15.0 Vendor 0x1959 Device 0xA006 
  00
:1B.0 Vendor 0x1959 Device 0xA00B 
  00
:1E.0 Vendor 0x1959 Device 0xA008 
   Range 0
: 007F0400 - 007F0500 (IO) 
   
Range 1: 007F0500 - 007F0600 (IO) 
  
0A:12.0 Vendor 0x1002 Device 0x4380 
   Range 0
: 00001040 - 00001048 (IO) 
   
Range 1: 0000105C - 00001060 (IO) 
   
Range 2: 00001048 - 00001050 (IO) 
   
Range 3: 00001058 - 0000105C (IO) 
   
Range 4: 00001010 - 00001020 (IO) 
  
0A:13.0 Vendor 0x1002 Device 0x4387 
   Range 0
: A0207000 - A0208000 (MEM) 
  
0A:13.1 Vendor 0x1002 Device 0x4388 
   Range 0
: A0208000 - A0209000 (MEM) 
  
0A:13.2 Vendor 0x1002 Device 0x4389 
   Range 0
: A0206000 - A0207000 (MEM) 
  
0A:13.3 Vendor 0x1002 Device 0x438A 
   Range 0
: A0204000 - A0205000 (MEM) 
  
0A:13.4 Vendor 0x1002 Device 0x438B 
   Range 0
: A0205000 - A0206000 (MEM) 
  
0A:13.5 Vendor 0x1002 Device 0x4386 
   Range 0
: A0209800 - A0209900 (MEM) 
  
0A:14.0 Vendor 0x1002 Device 0x4385 
   Range 0
: 00001020 - 00001030 (IO) 
   
Range 1: A0209400 - A0209800 (MEM) 
  
0A:14.1 Vendor 0x1002 Device 0x438C 
   Range 0
: 00001030 - 00001038 (IO) 
   
Range 1: 00001054 - 00001058 (IO) 
   
Range 2: 00001038 - 00001040 (IO) 
   
Range 3: 00001050 - 00001054 (IO) 
   
Range 4: 00001000 - 00001010 (IO) 
  
0A:14.2 Vendor 0x1002 Device 0x4383 
   Range 0
: A0200000 - A0204000 (MEM) 
  
0A:14.3 Vendor 0x1002 Device 0x438D 
   Range 0
: 00000000 - 00100000 (MEM) 
  
0A:14.4 Vendor 0x1002 Device 0x4384 
  0C
:06.0 Vendor 0x10EC Device 0x8139 
   Range 0
: 00003000 - 00003100 (IO) 
   
Range 1: A0300000 - A0300100 (MEM) 
  
02:00.0 Vendor 0x1002 Device 0x683D 
   Range 0
: 90000000 - A0000000 (PREF.MEM) 
   
Range 2: A0000000 - A0040000 (MEM) 
   
Range 4: 00002000 - 00002100 (IO) 
  
02:00.1 Vendor 0x1002 Device 0xAAB0 
   Range 0
: A0060000 - A0064000 (MEM) 

Libraries 
 0x626cf298
: ISO-8859-15.charset V52.1 
 0x626cfe98
: german_ISO-8859-15.language V52.1 
 0x02a86f62
: exec.library V54.30 
 0x6fe9a508
: cgxvideo.library V42.1 
 0x5dc19a08
: speedbar.gadget V53.14 
 0x5dc19948
: radiobutton.gadget V53.11 
 0x5dc095c0
: fuelgauge.gadget V53.8 
 0x5fb23b70
: ilbm.datatype V53.3 
 0x5f70f000
: amissl_v305.library V5.3 
 0x622e383c
: amisslmaster.library V5.3 
 0x60561d38
: X1kTemp.docky V53.10 
 0x5fb23a28
: DateTime.docky V52.11 
 0x5f8db870
: datebrowser.gadget V53.9 
 0x5f788b10
: texteditor.gadget V53.28 
 0x5f7e7e68
: NetDock.docky V52.0 
 0x5f7e7ce8
: RAMDock.docky V51.1 
 0x5f7e7a68
: GFXDock.docky V51.3 
 0x5f7e7468
: CPUDock.docky V51.0 
 0x5f7e7068
: Spacer.docky V53.2 
 0x5f839ed8
: SubDock.docky V53.1 
 0x5f6cccf0
: dnetcgui.library V1.15 
 0x5f839d58
: Separator.docky V53.2 
 0x62722d40
: arexx.class V53.6 
 0x62722ca0
: slider.gadget V53.17 
 0x5fdcdbc0
: requester.class V53.20 
 0x62722b60
: bitmap.image V53.9 
 0x62722a20
: getfont.gadget V53.11 
 0x5fdc3288
: screenblanker.library V53.7 
 0x627228e0
: getfile.gadget V53.12 
 0x627227a0
: integer.gadget V53.13 
 0x627b2108
: clicktab.gadget V53.50 
 0x5f6cc0c8
: chooser.gadget V53.22 
 0x627225c0
: penmap.image V53.6 
 0x62722520
: checkbox.gadget V53.12 
 0x5f6cc558
: hdaudio.audio V6.23 
 0x6ff3d6b8
: listbrowser.gadget V53.74 
 0x627949e0
: scroller.gadget V53.16 
 0x6fee79e0
: string.gadget V53.24 
 0x6207faa4
: usergroup.library V4.30 
 0x62090ec0
: bsdsocket.library V4.307 
 0x62652e10
: space.gadget V53.7 
 0x62229c70
: mathieeedoubbas.library V53.1 
 0x6207133c
: textclip.library V53.4 
 0x622292c4
: xpkmaster.library V5.2 
 0x62144498
: usbhidgate.library V53.3 
 0x622580bc
: xadmaster.library V13.2 
 0x626dac2c
: hid.usbfd V53.14 
 0x62652690
: button.gadget V53.22 
 0x62652730
: glyph.image V53.4 
 0x6239d0e0
: window.class V54.14 
 0x6255b808
: popupmenu.class V53.2 
 0x626d4a58
: popupmenu.library V53.14 
 0x626524b0
: label.image V53.14 
 0x62652410
: drawlist.image V53.3 
 0x6255b548
: layout.gadget V54.8 
 0x6255b620
: bevel.image V53.6 
 0x626520f0
: png.datatype V53.10 
 0x62799464
: picture.datatype V53.10 
 0x626cdd80
: Picasso96API.library V54.18 
 0x6263d274
: asl.library V53.54 
 0x62789c48
: timezone.library V53.11 
 0x626c9a98
: application.library V53.30 
 0x626ad26c
: ft2.library V53.2 
 0x6feeb80c
: workbench.library V53.62 
 0x626b25c0
: gadtools.library V53.8 
 0x6278933c
: commodities.library V53.10 
 0x6281c540
: datatypes.library V54.7 
 0x627e8c64
: png.iconmodule V53.1 
 0x6271a0cc
: icon.library V54.6 
 0x6fee3dd0
: z.library V53.9 
 0x6fce81d8
: version.library V53.18 
 0x6fc08f00
: iffparse.library V53.3 
 0x6ff10ecc
: locale.library V54.2 
 0x6fee441c
: diskfont.library V53.13 
 0x6fc111a8
: petunia.library V53.6 
 0x6fc110e8
: diskcache.library V3.31 
 0x6ff19228
: dos.library V54.112 
 0x6fee30a4
: usbprivate.library V53.22 
 0x6fe9db3c
: massstorage.usbfd V53.84 
 0x6fe9ae4c
: hub.usbfd V53.11 
 0x6fe9daa8
: bootkeyboard.usbfd V52.3 
 0x6fe9da28
: bootmouse.usbfd V53.3 
 0x6fe9d928
: mounter.library V53.20 
 0x6fe9a7fc
: usbresource.library V53.22 
 0x6ff8f3d8
: hunk.library V53.4 
 0x6fe9a6f4
: elf.library V53.30 
 0x6ff494d0
: intuition.library V54.28 
 0x6ff622c0
: keymap.library V53.9 
 0x6ff3c404
: nonvolatile.library V54.7 
 0x6ff3d5a0
: cybergraphics.library V43.0 
 0x6ff8e920
: RadeonHD.chip V3.7 
 0x6ffa3420
: graphics.library V54.248 
 0x6ff78320
: layers.library V54.12 
 0x6ff34150
: rtg.library V54.90 
 0x6ff8e7a4
: PCIGraphics.card V53.18 
 0x6ffab258
: newlib.library V53.80 
 0x6ff8d1ac
: utility.library V54.2 
 0x6ffa8398
: expansion.library V53.1 
 0x620d0cae
: rexxsyslib.library V53.4 (Legacy) 

Devices 
 0x61e3b854
: ahi.device V6.6 
 0x62144da8
: rtl8139.device V53.6 
 0x6279c194
: diskimage.device V53.4 
 0x6fce8ad8
: usbdisk.device V53.84 
 0x6ff8db10
: usbsys.device V53.22 
 0x6ff8f5f0
: ehci.usbhcd V53.26 
 0x6ff8f550
: ohci.usbhcd V53.22 
 0x6ff3c7a4
: cfide.device V53.0 
 0x6fe9d534
: sb600sata.device V53.22 
 0x6ff8d448
: console.device V53.105 
 0x6ff3c530
: ramdrive.device V54.1 
 0x6ff6250c
: input.device V53.6 
 0x6fee4024
: keyboard.device V53.11 
 0x6ff3c050
: timer.device V53.4 

Tasks 
 rhd_gc 
(Waiting) 
  
Stack: 0x6fe92000 - 0x6fe9a000, pointer @ 0x6fe99f40 (Cookie OK) 
  
Signals: SigRec 0x80000001, SigWait 0x00000000 
  State
: Task (Waiting) 
 
Exec Command and Control (Waiting) 
  
Stack: 0x6ff1c000 - 0x6ff20000, pointer @ 0x6ff1ff50 (Cookie OK) 
  
Signals: SigRec 0x80000000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
ClickToFront (Waiting) 
  
Stack: 0x5fd34004 - 0x5fd43ffc, pointer @ 0x5fd43ef0 (Cookie OK) 
  
Signals: SigRec 0xe000d000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
input.device (Waiting) 
  
Stack: 0x6fe82000 - 0x6fe92000, pointer @ 0x6fe91f00 (Cookie OK) 
  
Signals: SigRec 0x80000000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
SFS DosList handler (Waiting) 
  
Stack: 0x62df5004 - 0x62df8ffc, pointer @ 0x62df8f20 (Cookie OK) 
  
Signals: SigRec 0x80000000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
USB stack (Waiting) 
  
Stack: 0x6fdf1000 - 0x6fdf5000, pointer @ 0x6fdf4f20 (Cookie OK) 
  
Signals: SigRec 0xf800d000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
OHCI Controller Task Unit 0 (Waiting) 
  
Stack: 0x6fde9000 - 0x6fdf1000, pointer @ 0x6fdf0f20 (Cookie OK) 
  
Signals: SigRec 0xb8009000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
OHCI Controller Task Unit 3 (Waiting) 
  
Stack: 0x6fd89000 - 0x6fd91000, pointer @ 0x6fd90f20 (Cookie OK) 
  
Signals: SigRec 0xb8009000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
EHCI Controller Task Unit 0 (Waiting) 
  
Stack: 0x6fd3d000 - 0x6fd45000, pointer @ 0x6fd44f10 (Cookie OK) 
  
Signals: SigRec 0xbe009000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
OHCI Controller Task Unit 1 (Waiting) 
  
Stack: 0x6fdcd000 - 0x6fdd5000, pointer @ 0x6fdd4f20 (Cookie OK) 
  
Signals: SigRec 0xb8009000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
OHCI Controller Task Unit 4 (Waiting) 
  
Stack: 0x6fd61000 - 0x6fd69000, pointer @ 0x6fd68f20 (Cookie OK) 
  
Signals: SigRec 0xb8009000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
OHCI Controller Task Unit 2 (Waiting) 
  
Stack: 0x6fda5000 - 0x6fdad000, pointer @ 0x6fdacf20 (Cookie OK) 
  
Signals: SigRec 0xb8009000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
sb600sata.device - chip 0 port 0 (Waiting) 
  
Stack: 0x6fe40000 - 0x6fe48000, pointer @ 0x6fe47f10 (Cookie OK) 
  
Signals: SigRec 0xc0000000, SigWait 0x20000000 
  State
: Task (Waiting) 
 
cfide.device task (Waiting) 
  
Stack: 0x6fe18000 - 0x6fe20000, pointer @ 0x6fe1ff40 (Cookie OK) 
  
Signals: SigRec 0xc0000000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
MainCFIDE0/CrossDOSFileSystem 53.11  (Waiting) 
  
Stack: 0x62967004 - 0x6296affc, pointer @ 0x6296aeb0 (Cookie OK) 
  
Signals: SigRec 0x40000100, SigWait 0x80000000 
  State
: Process (Waiting) 
 
CFIDE0/CrossDOSFileSystem 53.11  (Waiting) 
  
Stack: 0x6297f004 - 0x62986ffc, pointer @ 0x62986ee0 (Cookie OK) 
  
Signals: SigRec 0x00010100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
ICD1/CDFileSystem 53.8  (Waiting) 
  
Stack: 0x62016004 - 0x62025ffc, pointer @ 0x62025f20 (Cookie OK) 
  
Signals: SigRec 0x00000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
ICD0/CDFileSystem 53.8  (Waiting) 
  
Stack: 0x6220f004 - 0x6221effc, pointer @ 0x6221ef20 (Cookie OK) 
  
Signals: SigRec 0x00000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CD0/CDFileSystem 53.8  (Waiting) 
  
Stack: 0x62ddd004 - 0x62de0ffc, pointer @ 0x62de0f20 (Cookie OK) 
  
Signals: SigRec 0x00000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
hid.usbfd (Waiting) 
  
Stack: 0x62122004 - 0x62129ffc, pointer @ 0x62129ea0 (Cookie OK) 
  
Signals: SigRec 0xe0000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
HID Mouse (Waiting) 
  
Stack: 0x620fa004 - 0x62109ffc, pointer @ 0x62109ef0 (Cookie OK) 
  
Signals: SigRec 0x80001000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
DH0/SmartFilesystem 1.293  (Waiting) 
  
Stack: 0x6fb97004 - 0x6fb9affc, pointer @ 0x6fb9aeb0 (Cookie OK) 
  
Signals: SigRec 0xe0000100, SigWait 0x10000000 
  State
: Process (Waiting) 
 
reaper.task (Waiting) 
  
Stack: 0x6289f004 - 0x628a6ffc, pointer @ 0x628a6e50 (Cookie OK) 
  
Signals: SigRec 0x00007000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
DH1/SmartFilesystem 1.293  (Waiting) 
  
Stack: 0x62cc4004 - 0x62cc7ffc, pointer @ 0x62cc7eb0 (Cookie OK) 
  
Signals: SigRec 0xe0000100, SigWait 0x10000000 
  State
: Process (Waiting) 
 
hid.usbfd (Waiting) 
  
Stack: 0x6213a004 - 0x62141ffc, pointer @ 0x62141ea0 (Cookie OK) 
  
Signals: SigRec 0xe0000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
hid.usbfd (Waiting) 
  
Stack: 0x6212e004 - 0x62135ffc, pointer @ 0x62135ea0 (Cookie OK) 
  
Signals: SigRec 0xe0000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
HID Keyboard (Waiting) 
  
Stack: 0x620a6004 - 0x620b5ffc, pointer @ 0x620b5f00 (Cookie OK) 
  
Signals: SigRec 0x90001000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
HID Consumer (Waiting) 
  
Stack: 0x620d6004 - 0x620e5ffc, pointer @ 0x620e5f20 (Cookie OK) 
  
Signals: SigRec 0x80001000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
RAM/ram-handler 54.24  (Waiting) 
  
Stack: 0x6280f004 - 0x62812ffc, pointer @ 0x62812d40 (Cookie OK) 
  
Signals: SigRec 0x80000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
IDF1/FastFileSystem 53.2  (Waiting) 
  
Stack: 0x61f4d004 - 0x61f5cffc, pointer @ 0x61f5ced0 (Cookie OK) 
  
Signals: SigRec 0xa8000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
IDF0/FastFileSystem 53.2  (Waiting) 
  
Stack: 0x61f9a004 - 0x61fa9ffc, pointer @ 0x61fa9ed0 (Cookie OK) 
  
Signals: SigRec 0xa8000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
URL/launch-handler 53.39  (Waiting) 
  
Stack: 0x61e92004 - 0x61f0cffc, pointer @ 0x61f08fa0 (Cookie OK) 
  
Signals: SigRec 0x80000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
RANDOM/Random-Handler 52.1  (Waiting) 
  
Stack: 0x6223c004 - 0x6224bffc, pointer @ 0x6224bef0 (Cookie OK) 
  
Signals: SigRec 0x00000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
MassStorage Device Task (Waiting) 
  
Stack: 0x6fbfd000 - 0x6fc05000, pointer @ 0x6fc04eb0 (Cookie OK) 
  
Signals: SigRec 0xe4009000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
rtl8139.device.0 (Waiting) 
  
Stack: 0x5febd004 - 0x5feccffc, pointer @ 0x5feccef0 (Cookie OK) 
  
Signals: SigRec 0x78008000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5d466004 - 0x5d475ffc, pointer @ 0x5d475e20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
dos_filedir_notify (Waiting) 
  
Stack: 0x6fbd8004 - 0x6fbdcffc, pointer @ 0x6fbdbeb0 (Cookie OK) 
  
Signals: SigRec 0x40001000, SigWait 0x80000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5d63e004 - 0x5d64dffc, pointer @ 0x5d64de20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5d672004 - 0x5d681ffc, pointer @ 0x5d681e20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5d714004 - 0x5d723ffc, pointer @ 0x5d723e20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5db1b004 - 0x5db2affc, pointer @ 0x5db2ae20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5db3f004 - 0x5db4effc, pointer @ 0x5db4ee20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5dfab004 - 0x5dfbaffc, pointer @ 0x5dfbae20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5f89a004 - 0x5f8a9ffc, pointer @ 0x5f8a9e20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5f8ea004 - 0x5f8f9ffc, pointer @ 0x5f8f9e20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5fa7e004 - 0x5fa8dffc, pointer @ 0x5fa8de20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5fcec004 - 0x5fcfbffc, pointer @ 0x5fcfbe20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5fb9e004 - 0x5fbadffc, pointer @ 0x5fbade20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5fc9c004 - 0x5fcabffc, pointer @ 0x5fcabe20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5fd7c004 - 0x5fd8bffc, pointer @ 0x5fd8be20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x5fe21004 - 0x5fe30ffc, pointer @ 0x5fe30e20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x61d47004 - 0x61d56ffc, pointer @ 0x61d56e20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
APPDIR/appdir-handler 54.17  (Waiting) 
  
Stack: 0x61e62004 - 0x61e71ffc, pointer @ 0x61e71ec0 (Cookie OK) 
  
Signals: SigRec 0x80000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
AUDIO/AHI-Handler 6.2  (Waiting) 
  
Stack: 0x622c2004 - 0x622d2004, pointer @ 0x622d1ed0 (Cookie OK) 
  
Signals: SigRec 0x00000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
ENV/env-handler 54.18  (Waiting) 
  
Stack: 0x627fb004 - 0x62802ffc, pointer @ 0x62802ef0 (Cookie OK) 
  
Signals: SigRec 0x80000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x6290b004 - 0x62912ffc, pointer @ 0x62912e20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
RAW/con-handler 53.82  (Waiting) 
  
Stack: 0x62937004 - 0x6293effc, pointer @ 0x6293ee20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
CON/con-handler 53.82  (Waiting) 
  
Stack: 0x6295b004 - 0x62962ffc, pointer @ 0x62962e20 (Cookie OK) 
  
Signals: SigRec 0xa0000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
dos_nbmd_process (Waiting) 
  
Stack: 0x6fbf9004 - 0x6fbfcffc, pointer @ 0x6fbfcf30 (Cookie OK) 
  
Signals: SigRec 0x00001100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
dos_lock_handler (Waiting) 
  
Stack: 0x6fc0d004 - 0x6fc10ffc, pointer @ 0x6fc10f00 (Cookie OK) 
  
Signals: SigRec 0x00001100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
RexxMaster (Waiting) 
  
Stack: 0x61dbd004 - 0x61dccffc, pointer @ 0x61dccec0 (Cookie OK) 
  
Signals: SigRec 0xc0000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
diskimage.device unit 1 (Waiting) 
  
Stack: 0x61f2d004 - 0x61f40ffc, pointer @ 0x61f40c50 (Cookie OK) 
  
Signals: SigRec 0xc0000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
diskimage.device unit 0 (Waiting) 
  
Stack: 0x61f7a004 - 0x61f8dffc, pointer @ 0x61f8dc50 (Cookie OK) 
  
Signals: SigRec 0xc0000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
diskimage.device unit 5 (Waiting) 
  
Stack: 0x61fe7004 - 0x61ffaffc, pointer @ 0x61ffac50 (Cookie OK) 
  
Signals: SigRec 0xc0000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
diskimage.device unit 4 (Waiting) 
  
Stack: 0x6205a004 - 0x6206dffc, pointer @ 0x6206dc50 (Cookie OK) 
  
Signals: SigRec 0xc0000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
TEXTCLIP/textclip-handler 53.4  (Waiting) 
  
Stack: 0x61e11004 - 0x61e20ffc, pointer @ 0x61e20ec0 (Cookie OK) 
  
Signals: SigRec 0x80000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
Workbench (Waiting) 
  
Stack: 0x5ffc4004 - 0x5ffd3ffc, pointer @ 0x5ffd3e50 (Cookie OK) 
  
Signals: SigRec 0x80000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
compose.task (Waiting) 
  
Stack: 0x6129d000 - 0x612a5000, pointer @ 0x612a4f30 (Cookie OK) 
  
Signals: SigRec 0x00000021, SigWait 0x00000000 
  State
: Task (Waiting) 
 
Bildschirmschoner-Bibliothek. (Waiting) 
  
Stack: 0x5fc2a004 - 0x5fc3affc, pointer @ 0x5fc3af00 (Cookie OK) 
  
Signals: SigRec 0xb4001000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
Workbench DosList Notify (Waiting) 
  
Stack: 0x60010004 - 0x6001fffc, pointer @ 0x6001ff40 (Cookie OK) 
  
Signals: SigRec 0x00003000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
ramlib (Waiting) 
  
Stack: 0x62823004 - 0x6283bffc, pointer @ 0x6283bf20 (Cookie OK) 
  
Signals: SigRec 0x80001000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
texteditor.gadget Clipboard Server (Waiting) 
  
Stack: 0x601a2004 - 0x601baffc, pointer @ 0x601baf00 (Cookie OK) 
  
Signals: SigRec 0x80000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
ContextMenus Command Dispatcher (Waiting) 
  
Stack: 0x6027b004 - 0x6028affc, pointer @ 0x6028af30 (Cookie OK) 
  
Signals: SigRec 0x80001000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
string.gadget server (Waiting) 
  
Stack: 0x627b9004 - 0x627c8ffc, pointer @ 0x627c8db0 (Cookie OK) 
  
Signals: SigRec 0x40000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
Workbench Clipboard Server (Waiting) 
  
Stack: 0x5fe7d004 - 0x5fe8cffc, pointer @ 0x5fe8cef0 (Cookie OK) 
  
Signals: SigRec 0x80000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
TCP/IP Control (Ready) 
  
Stack: 0x5f614004 - 0x5f623ffc, pointer @ 0x5f623dc0 (Cookie OK) 
  
Signals: SigRec 0xf8009080, SigWait 0x40000000 
  State
: Process (Ready) 
 
RinghioServer (Waiting) 
  
Stack: 0x5fa92004 - 0x5fab1ffc, pointer @ 0x5fab1390 (Cookie OK) 
  
Signals: SigRec 0xd8001000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
AmiDock (Waiting) 
  
Stack: 0x5fea9004 - 0x5feb8ffc, pointer @ 0x5feb8740 (Cookie OK) 
  
Signals: SigRec 0x00000100, SigWait 0x00180000 
  State
: Process (Waiting) 
 
hub.usbfd (Waiting) 
  
Stack: 0x6fced004 - 0x6fcf4ffc, pointer @ 0x6fcf4eb0 (Cookie OK) 
  
Signals: SigRec 0x30000000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
hub.usbfd (Waiting) 
  
Stack: 0x6fcc5004 - 0x6fcccffc, pointer @ 0x6fccceb0 (Cookie OK) 
  
Signals: SigRec 0x30000000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
Background CLI [FilerCX] (Waiting) 
  
Stack: 0x5fb04004 - 0x5fb13ffc, pointer @ 0x5fb13cc0 (Cookie OK) 
  
Signals: SigRec 0x40001000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
ELF Collector (Waiting) 
  
Stack: 0x6fbb3004 - 0x6fbc3ffc, pointer @ 0x6fbc3e70 (Cookie OK) 
  
Signals: SigRec 0x00000100, SigWait 0x00000000 
  State
: Process (Waiting) 
 
ScreenBlankerEngine (Waiting) 
  
Stack: 0x5fd98004 - 0x5fda7ffc, pointer @ 0x5fda7c00 (Cookie OK) 
  
Signals: SigRec 0xd8001000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
dnetc (Waiting) 
  
Stack: 0x5f90e004 - 0x5f93effc, pointer @ 0x5f93ebe0 (Cookie OK) 
  
Signals: SigRec 0x78000000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
hub.usbfd (Waiting) 
  
Stack: 0x6fcad004 - 0x6fcb4ffc, pointer @ 0x6fcb4eb0 (Cookie OK) 
  
Signals: SigRec 0x30000000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
hub.usbfd (Waiting) 
  
Stack: 0x6fcdd004 - 0x6fce4ffc, pointer @ 0x6fce4eb0 (Cookie OK) 
  
Signals: SigRec 0x30000000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
hub.usbfd (Waiting) 
  
Stack: 0x6fcb9004 - 0x6fcc0ffc, pointer @ 0x6fcc0eb0 (Cookie OK) 
  
Signals: SigRec 0x30000000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
hub.usbfd (Waiting) 
  
Stack: 0x6fcd1004 - 0x6fcd8ffc, pointer @ 0x6fcd8eb0 (Cookie OK) 
  
Signals: SigRec 0x30000000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
Mounter GUI (Waiting) 
  
Stack: 0x62349004 - 0x6235cffc, pointer @ 0x6235ce10 (Cookie OK) 
  
Signals: SigRec 0x80007000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
FilerCXLauncher [APPDIR:Filer] (Waiting) 
  
Stack: 0x5db6f004 - 0x5dba0ffc, pointer @ 0x5dba0880 (Cookie OK) 
  
Signals: SigRec 0xf6001000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
FilerCXLauncher [APPDIR:Filer] (Waiting) 
  
Stack: 0x5d69e004 - 0x5d6cfffc, pointer @ 0x5d6cf880 (Cookie OK) 
  
Signals: SigRec 0xf6001000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
application.library messageserver (Waiting) 
  
Stack: 0x626db000 - 0x626dbfa0, pointer @ 0x626dbf10 (Cookie OK) 
  
Signals: SigRec 0xc0000000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
wet (Waiting) 
  
Stack: 0x5fbb2004 - 0x5fbc1ffc, pointer @ 0x5fbbe200 (Cookie OK) 
  
Signals: SigRec 0x6e001000, SigWait 0x00000080 
  State
: Process (Waiting) 
 
TCP/IP Configuration (Waiting) 
  
Stack: 0x5f660004 - 0x5f66fffc, pointer @ 0x5f66fe10 (Cookie OK) 
  
Signals: SigRec 0xf8003000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
Granite (Waiting) 
  
Stack: 0x5f8b6004 - 0x5f8c5ffc, pointer @ 0x5f8c5be0 (Cookie OK) 
  
Signals: SigRec 0xc8008000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
ContextMenus (Waiting) 
  
Stack: 0x5fcb8004 - 0x5fcc7ffc, pointer @ 0x5fcc7c90 (Cookie OK) 
  
Signals: SigRec 0xe0001000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
AsyncWB (Waiting) 
  
Stack: 0x5fe69004 - 0x5fe78ffc, pointer @ 0x5fe78e90 (Cookie OK) 
  
Signals: SigRec 0xc0001000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
RAWBInfo (Waiting) 
  
Stack: 0x5fdd5004 - 0x5fde4ffc, pointer @ 0x5fde4ec0 (Cookie OK) 
  
Signals: SigRec 0x80001000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
DefIcons (Waiting) 
  
Stack: 0x5fe4d004 - 0x5fe5cffc, pointer @ 0x5fe5cdb0 (Cookie OK) 
  
Signals: SigRec 0x80009000, SigWait 0x00000100 
  State
: Process (Waiting) 
 
« IPrefs » (Waiting) 
  
Stack: 0x626f9004 - 0x62708ffc, pointer @ 0x62708a20 (Cookie OK) 
  
Signals: SigRec 0x0000f000, SigWait 0x20000000 
  State
: Process (Waiting) 
 
TCP/IP Superserver (Waiting) 
  
Stack: 0x5f644004 - 0x5f653ffc, pointer @ 0x5f6539f0 (Cookie OK) 
  
Signals: SigRec 0xd0000080, SigWait 0x00000000 
  State
: Process (Waiting) 
 
TCP/IP Log (Waiting) 
  
Stack: 0x5f6a0004 - 0x5f6afffc, pointer @ 0x5f6aff00 (Cookie OK) 
  
Signals: SigRec 0x80003000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
ConClip (Waiting) 
  
Stack: 0x622f9004 - 0x62308ffc, pointer @ 0x62308eb0 (Cookie OK) 
  
Signals: SigRec 0x80000000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
USB stack Process (Waiting) 
  
Stack: 0x62375004 - 0x62384ffc, pointer @ 0x62384ee0 (Cookie OK) 
  
Signals: SigRec 0x80001000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
MassStorage Notifier (Waiting) 
  
Stack: 0x6fe01000 - 0x6fe08d00, pointer @ 0x6fe08c70 (Cookie OK) 
  
Signals: SigRec 0x80001000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
datatypes.library (Waiting) 
  
Stack: 0x625f3004 - 0x62602ffc, pointer @ 0x62602e30 (Cookie OK) 
  
Signals: SigRec 0x80001000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
DST watcher (Waiting) 
  
Stack: 0x6261b004 - 0x6262affc, pointer @ 0x6262af10 (Cookie OK) 
  
Signals: SigRec 0xc0000000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
lite (Crashed) 
  
Stack: 0x5d353004 - 0x5d36bffc, pointer @ 0x5d36adc0 (Cookie OK) 
  
Signals: SigRec 0x00000010, SigWait 0x40000100 
  State
: Process (Crashed) 
 
Mounter Task (Waiting) 
  
Stack: 0x6fe09000 - 0x6fe17a60, pointer @ 0x6fe17970 (Cookie OK) 
  
Signals: SigRec 0xb0001000, SigWait 0x00000000 
  State
: Task (Waiting) 
 
Mounter Companion Process (Waiting) 
  
Stack: 0x62361004 - 0x62370ffc, pointer @ 0x62370f40 (Cookie OK) 
  
Signals: SigRec 0x80003000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
ramlib.support (Waiting) 
  
Stack: 0x62858004 - 0x62870ffc, pointer @ 0x62870f00 (Cookie OK) 
  
Signals: SigRec 0x80005000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
dos_signal_server (Waiting) 
  
Stack: 0x6fbe1004 - 0x6fbe4ffc, pointer @ 0x6fbe4f20 (Cookie OK) 
  
Signals: SigRec 0x0000f000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
appdir envarc manager (Waiting) 
  
Stack: 0x61e46004 - 0x61e55ffc, pointer @ 0x61e54be0 (Cookie OK) 
  
Signals: SigRec 0x80005000, SigWait 0x00000000 
  State
: Process (Waiting) 
 
dnetc crunch #1 (Ready) 
  
Stack: 0x605ff000 - 0x60601000, pointer @ 0x60600be0 (Cookie OK) 
  
Signals: SigRec 0x00000000, SigWait 0x00000000 
  State
: Task (Ready) 
 
CPUDock_idleTask (Ready) 
  
Stack: 0x605b2000 - 0x605b6000, pointer @ 0x605b5f50 (Cookie OK) 
  
Signals: SigRec 0x40001000, SigWait 0x40000000 
  State
: Task (Ready) 
 
idle.task (Ready) 
  
Stack: 0x6ff61000 - 0x6ff62000, pointer @ 0x6ff61fd0 (Cookie OK) 
  
Signals: SigRec 0x00000000, SigWait 0x00000000 
  State
: Task (Ready)

AMIGA 1200 | Vampire 1200 II | 128 MB RAM | Indivision AGA Mk3 | 256 GB SD | AmigaOS 3.2.2
AMIGA 600 | Vampire 600 II | 128 MB RAM | Indivision ECS Mk3 | 256 GB SD | AmigaOS 3.2.2
Go to top
Re: A new editor for AmigaOS 4 is in the works
Site Builder
Site Builder


See User information
@DJBase
Try to delete the .config folder under the LiteXL folder and try that again, and please let me know if it works.

I am working on a new version with a few fixes. If it doesn't work I will push it to do it as soon as possible.

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: A new editor for AmigaOS 4 is in the works
Just popping in
Just popping in


See User information
Works fine here without any problems - new string.gadget and newlib.library installed.
Maybe wrong version installed?

Go to top
Re: A new editor for AmigaOS 4 is in the works
Just popping in
Just popping in


See User information
@walkero

Quote:
Try to delete the .config folder under the LiteXL folder and try that again, and please let me know if it works.


Does the trick, working again.

AMIGA 1200 | Vampire 1200 II | 128 MB RAM | Indivision AGA Mk3 | 256 GB SD | AmigaOS 3.2.2
AMIGA 600 | Vampire 600 II | 128 MB RAM | Indivision ECS Mk3 | 256 GB SD | AmigaOS 3.2.2
Go to top
Re: A new editor for AmigaOS 4 is in the works
Site Builder
Site Builder


See User information
Probably was one of the project paths. The new release will have a few fixes to prevent such issues happening.
Thank you for testing it and using this editor

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top

  Register To Post
« 1 2 3 (4) 5 »

 




Currently Active Users Viewing This Thread: 1 ( 0 members and 1 Anonymous Users )




Powered by XOOPS 2.0 © 2001-2024 The XOOPS Project