Who's Online
138 user(s) are online (
131 user(s) are browsing
Forums )
Members: 0
Guests: 138
more...
Topic options
View mode
Newest First
gcc -fexceptions
Posted on:
2017/11/30 18:39
#1
Home away from home
Joined: 2006/11/26 21:45Last Login
: Today 21:45
From a dying planet
Group:
Registered Users
This one goes to all the devs out there... Can anyone tell me if our GCC 4.2.4 or higher (5.3.0) support exceptions? And where do i use the -fexceptions flag? GCCFLAGS or LDFLAGS? Is there anything special i need to take into account? e.g. more flags i need to set to make exceptions work? Reason for asking is, one of my maintained projects switched to using exceptions lately and now native compiling breaks. I have already tried and added the flag to both LD and GCCFLAGS (one after the other) to fix the error, but to no avail. I need to know if it is even supported in our adtools, so i could file a feature request to add it if needed. Thanks in advance
Re: gcc -fexceptions
Posted on:
2017/11/30 19:27
#2
Home away from home
Joined: 2006/12/4 23:15Last Login
: 10/14 16:04
Group:
Registered Users
@Raziel You mean C++ exceptions? They are only supported in single threaded mode as far as I recall.
Re: gcc -fexceptions
Posted on:
2017/12/1 7:12
#3
Home away from home
Joined: 2006/11/26 21:45Last Login
: Today 21:45
From a dying planet
Group:
Registered Users
@broadblues I guess so. Doesn't work, no matter what i use. The project reverted those exceptions changes for now and it starts to build again. Too bad, once they decide to go with them, this project will be another nogo for AmigaOS.
Re: gcc -fexceptions
Posted on:
2017/12/1 11:32
#4
Just can't stay away
Joined: 2009/4/28 4:57Last Login
: Today 13:22
From Adelaide, Australia
Group:
Registered Users
@Raziel
Did you mean CFLAGS? -fexceptions is recognized as an option on the 3 versions I tested, 4.2.4, 5.4.0 and 6.1.0. Whether it actually works or not, I have no idea.
Are you statically linking? I've only had C++ exceptions work properly with static libs (see
bottom of post #25 ).
Edited by MickJT on 2017/12/1 11:48:32 Edited by MickJT on 2017/12/1 11:49:06 Edited by MickJT on 2017/12/1 11:49:50
Re: gcc -fexceptions
Posted on:
2017/12/1 11:42
#5
Not too shy to talk
Joined: 2007/3/30 18:39Last Login
: 11/15 19:54
Group:
Registered Users
Are not exceptions working by default (even without -fexceptions)? @Raziel Could you provide an example and the error you get?
Re: gcc -fexceptions
Posted on:
2017/12/1 14:18
#6
Home away from home
Joined: 2006/11/26 21:45Last Login
: Today 21:45
From a dying planet
Group:
Registered Users
Sorry for the long delay, a day has just too few hours...wonder when the gouvernemnt will do something about that
@MickJT
I meant CXXFLAGS, sorry for the confusion
I link statically, yes
@corto
Only that lines from the project that errors out on compiling:
engines / grim / lua / ldo . cpp : In function 'void Grim::lua_error(const
char*)' :
engines / grim / lua / ldo . cpp : 328 : 9 : error : exception handling disabled ,
use - fexceptions to enable
throw "lua error" ;
^
engines / grim / lua / ldo . cpp : In function 'int32
Grim::protectedparser(Grim::ZIO*, int32)' :
engines / grim / lua / ldo . cpp : 387 : 9 : error : expected 'catch' before '{'
token
} else {
^
engines / grim / lua / ldo . cpp : 387 : 9 : error : expected '(' before '{' token
engines / grim / lua / ldo . cpp : 387 : 9 : error : expected type - specifier
before '{' token
engines / grim / lua / ldo . cpp : 387 : 9 : error : expected ')' before '{' token
gmake : *** [ engines / grim / lua / ldo . o ] Error 1
Here is the change (amongs others) in ldo.cpp that broke it:
** See Copyright Notice in lua . h
*/
- #define FORBIDDEN_SYMBOL_EXCEPTION_setjmp
- #define FORBIDDEN_SYMBOL_EXCEPTION_longjmp
#define FORBIDDEN_SYMBOL_EXCEPTION_fprintf
#define FORBIDDEN_SYMBOL_EXCEPTION_stderr
#define FORBIDDEN_SYMBOL_EXCEPTION_exit
@@ - 327 , 7 + 325 , 7 @@ void lua_error (const char * s ) {
if ( s )
message ( s );
if ( lua_state -> errorJmp ) {
- longjmp (*(( jmp_buf *) lua_state -> errorJmp ), 1 );
+ throw "lua error" ;
} else {
fprintf ( stderr , "lua: exit(1). Unable to recover\n" );
exit( 1 );
@@ - 351 , 17 + 349 , 16 @@ static void do_callinc ( int32 nResults ) {
** parameters are on top of it . Leave nResults on the stack .
*/
int32 luaD_protectedrun ( int32 nResults ) {
- jmp_buf myErrorJmp ;
int32 status ;
struct C_Lua_Stack oldCLS = lua_state -> Cstack ;
- jmp_buf * oldErr = lua_state -> errorJmp ;
- lua_state -> errorJmp = & myErrorJmp ;
+ bool oldErr = lua_state -> errorJmp ;
+ lua_state -> errorJmp = true ;
lua_state -> state_counter1 ++;
lua_Task * tmpTask = lua_state -> task ;
- if ( setjmp ( myErrorJmp ) == 0 ) {
+ try {
do_callinc ( nResults );
status = 0 ;
- } else { // an error occurred: restore lua_state->Cstack and lua_state->stack.top
+ } catch (...) { // an error occurred: restore lua_state->Cstack and lua_state->stack.top
lua_state -> Cstack = oldCLS ;
lua_state -> stack . top = lua_state -> stack . stack + lua_state -> Cstack . base ;
while ( tmpTask != lua_state -> task ) {
@@ - 382 , 10 + 379 , 9 @@ int32 luaD_protectedrun ( int32 nResults ) {
static int32 protectedparser ( ZIO * z , int32 bin ) {
int32 status ;
TProtoFunc * tf ;
- jmp_buf myErrorJmp ;
- jmp_buf * oldErr = lua_state -> errorJmp ;
- lua_state -> errorJmp = & myErrorJmp ;
- if ( setjmp ( myErrorJmp ) == 0 ) {
+ bool oldErr = lua_state -> errorJmp ;
+ lua_state -> errorJmp = true ;
+ try {
tf = bin ? luaU_undump1 ( z ) : luaY_parser ( z );
status = 0 ;
} else {
The code is
here .
The change has since been reverted (partially) and is now working again.
Mick noted that it might have been a bug in the code...
Re: gcc -fexceptions
Posted on:
2017/12/1 14:46
#7
Not too shy to talk
Joined: 2007/3/30 18:39Last Login
: 11/15 19:54
Group:
Registered Users
It seems there was at least one problem in the code:
try {
tf = bin ? luaU_undump1(z) : luaY_parser(z);
status = 0;
} else {
I'm not a C++ expert but it seems that throwing a char string is not a good ideally, an exception type should be preferred.
About the error "exception handling disabled, use -fexceptions to enable", I don't know ... I tried a similar case in a short example here and it works with g++ 5.4.
By the way, if you still use 5.3, you should update to 5.4, so you will be able to report some problems about the version that is in development here:
https://github.com/sba1/adtools/issues
Re: gcc -fexceptions
Posted on:
2017/12/1 14:54
#8
Home away from home
Joined: 2006/11/26 21:45Last Login
: Today 21:45
From a dying planet
Group:
Registered Users
@corto Where can i get 5.4?
Re: gcc -fexceptions
Posted on:
2017/12/1 14:56
#9
Home away from home
Joined: 2006/12/4 23:15Last Login
: 10/14 16:04
Group:
Registered Users
So here is trivial exception handler
#include <iostream>
using namespace std ;
int main ( int argc , char * argv [])
{
try {
throw "error" ;
cout << "success" << '\n' ;
}
catch(...)
{
cout << "exception" << '\n' ;
}
}
Compile and test two different ways
Quote:
11.RAM Disk:> g++ except.cpp -o except_test 11.RAM Disk:> except_test exception 11.RAM Disk:> gcc except.cpp -lstdc++ -o except_test_gcc 11.RAM Disk:> except_test_gcc exceptionSo yes exceptions work. (that was gcc 4 on my SAM but I doubt it would differ on gcc 5 (but it's not impossible))
Make sure that -fno-exceptions is not defined any where in the makefiles
Also I doubt think
try { } else { }
is valid c++
should be
try { } catch { }
Though I'm a lousey c++ coder so might be wrong there, the error out suggest that's what the compile time problem is.
Re: gcc -fexceptions
Posted on:
2017/12/1 15:00
#11
Home away from home
Joined: 2006/12/4 23:15Last Login
: 10/14 16:04
Group:
Registered Users
@Raziel gcc 5.4 is on the adtools site in the bintray link therein. If you are using the gcc 5.3 from os4depot that is definitly broken is some regards (sorry I forget which off hand and they may not be relavant here)
Re: gcc -fexceptions
Posted on:
2017/12/1 16:15
#12
Home away from home
Joined: 2006/11/26 21:45Last Login
: Today 21:45
From a dying planet
Group:
Registered Users
@corto
Thank you, i will try that
@broadblues
Nice
Was there a alert somewhere that 5.3 is broken?
Re: gcc -fexceptions
Posted on:
2017/12/1 16:40
#13
Home away from home
Joined: 2006/11/26 21:45Last Login
: Today 21:45
From a dying planet
Group:
Registered Users
@all
Well, with 5.4.0 in place and a reboot later, i now get this on configuring
Quote:
SDK:gcc/bin/cat: ./residualvm-conf.cpp: No such file or directoryThe file is there in root, so cat is wrong
and an incomplete makefile
Quote:
Makefile.common:218: *** target pattern contains no `%'. Stop.The same works fine with 5.3.0...any pointers, please?
Re: gcc -fexceptions
Posted on:
2017/12/1 16:57
#14
Home away from home
Joined: 2006/12/4 23:15Last Login
: 10/14 16:04
Group:
Registered Users
@Raziel remove the coreutils that got mixed in with the ggc:bin they are broken and the position in the path overides the working ones in SDK:Local/C
Re: gcc -fexceptions
Posted on:
2017/12/1 17:19
#15
Home away from home
Joined: 2006/11/26 21:45Last Login
: Today 21:45
From a dying planet
Group:
Registered Users
@broadblues Thank you Is that because it's a non-released version? Why are there broken components in adtools?
Re: gcc -fexceptions
Posted on:
2017/12/1 17:33
#16
Home away from home
Joined: 2006/12/4 23:15Last Login
: 10/14 16:04
Group:
Registered Users
@Raziel
It an unofficial build. Albeit the most official unofficial build
They are broken because they were built against newlib rather than clib2 and there are a couple of differences with command line handling pattern matching (or when not to) etc. between the two libs.
Naturally the author didn't realise they were broken when the archive was built...
There is a bug report against the issue on the adtools github website
Re: gcc -fexceptions
Posted on:
2017/12/1 17:46
#17
Home away from home
Joined: 2006/11/26 21:45Last Login
: Today 21:45
From a dying planet
Group:
Registered Users
@broadblues I see, thank you again Will reconfigure and compile all my projects and if anything comes up may bother you again
Re: gcc -fexceptions
Posted on:
2017/12/1 18:23
#18
Home away from home
Joined: 2006/11/26 21:45Last Login
: Today 21:45
From a dying planet
Group:
Registered Users
@broadblues gcc5.4 is also erroring out at the same lines with the exact same error, so it's at least not gcc's fault.
Re: gcc -fexceptions
Posted on:
2017/12/1 20:08
#19
Home away from home
Joined: 2006/11/26 21:45Last Login
: Today 21:45
From a dying planet
Group:
Registered Users
@broadblues
wrt to sobjs builds.
I get a crashing sobjs exe with both gcc 5.3.0 and 5.4.0, both crash in libstdc++.
I know that it used to work (to an extent; at least the exe wasn't crashing) in 4.2.4.
Crashlog
Crash log for task "scummvm"
Generated by GrimReaper 53.19
Crash occured in module libstdc ++. so at address 0x7F141B08
Type of crash : DSI ( Data Storage Interrupt ) exception
Alert number : 0x80000003
Register dump :
GPR ( General Purpose Registers ):
0 : 00000760 46F726C0 00000000 3DEA8C84 FFFFFFFF 00000006 46D9C35C 47097ED0
8 : 469C74B0 00000008 46F726C8 00076002 24842824 3DEB03E0 46F726C8 00000007
16 : 46D9F220 469C74B0 46D9C35C 00000006 00000000 47097770 47097770 FFFFFFFF
24 : 00000002 46D9F240 48844888 46F72748 FFFFFFFF 46D9C35C 00000000 47097770
FPR ( Floating Point Registers , NaN = Not a Number ):
0 : nan 20 - 2.28999e+226 - 5.85132e+307
4 : nan - 4.4678e+307 - 4.4678e+307 2.14748e+09
8 : 18 4.5036e+15 1684 4.5036e+15
12 : 2.14748e+09 - 1 0 0
16 : 0 0 0 0
20 : 0 0 0 0
24 : 255 2.14748e+09 1.52588e-05 4.5036e+15
28 : 65536 4.5036e+15 65536 1
FPSCR ( Floating Point Status and Control Register ): 0x82020000
SPRs ( Special Purpose Registers ):
Machine State ( msr ) : 0x0200B030
Condition ( cr ) : 0x4B6E259C
Instruction Pointer ( ip ) : 0x7F141B08
Xtended Exception ( xer ) : 0x47E6F018
Count ( ctr ) : 0x6FF364D0
Link ( lr ) : 0x7FB56920
DSI Status ( dsisr ) : 0x47E6EDD0
Data Address ( dar ) : 0x021E4828
680x0 emulated registers :
DATA : 00000001 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ADDR : 6FFB8000 97309000 00000000 00000000 00000000 00000000 00000000 4B44CEB0
FPU0 : 0 0 0 0
FPU4 : 0 0 0 0
Symbol info :
Instruction pointer 0x7F141B08 belongs to module "libstdc++.so" ( PowerPC )
Symbol : _ZNK10__cxxabiv121__vmi_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x140 in section 10 offset 0x00076D40
Stack trace :
System : SObjs / libstdc ++. so : _ZNK10__cxxabiv121__vmi_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE ()+ 0x140 ( section 10 @ 0x76D40 )
System : SObjs / libstdc ++. so : __dynamic_cast ()+ 0x84 ( section 10 @ 0x771C8 )
[ backends / platform / sdl / sdl . cpp : 298 ] scummvm : _ZN11OSystem_SDL11initBackendEv ()+ 0x5f4 ( section 10 @ 0xEB8 )
[ base / main . cpp : 436 ] scummvm : scummvm_main ()+ 0x7d8 ( section 10 @ 0x7C18 )
[ backends / platform / sdl / amigaos / amigaos - main . cpp : 79 ] scummvm : main ()+ 0x22c ( section 10 @ 0x5D9C )
native kernel module newlib . library . kmod + 0x000020a4
native kernel module newlib . library . kmod + 0x00002d0c
native kernel module newlib . library . kmod + 0x00002ee8
scummvm : _start ()+ 0x170 ( section 10 @ 0x16C )
native kernel module dos . library . kmod + 0x000255c8
native kernel module kernel . debug + 0x0006e9c0
native kernel module kernel . debug + 0x0006ea08
PPC disassembly :
7f141b00 : 81230000 lwz r9 , 0 ( r3 )
7f141b04 : 7dca7378 mr r10 , r14
* 7f141b08 : 8129001c lwz r9 , 28 ( r9 )
7f141b0c : 7d2903a6 mtctr r9
7f141b10 : 7ec9b378 mr r9 , r22
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.2 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 : 00001058 - 0000105C ( 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 : A0208000 - A0209000 ( MEM )
0A : 13.1 Vendor 0x1002 Device 0x4388
Range 0 : A0207000 - A0208000 ( 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 : A0209000 - A0209400 ( MEM )
0A : 14.1 Vendor 0x1002 Device 0x438C
Range 0 : 00001030 - 00001038 ( IO )
Range 1 : 00001050 - 00001054 ( 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 : 05.0 Vendor 0x10EC Device 0x8139
Range 0 : 00003100 - 00003200 ( IO )
Range 1 : A0301000 - A0301100 ( MEM )
0C : 06.0 Vendor 0xE159 Device 0x0001
Range 0 : 00003000 - 00003100 ( IO )
Range 1 : A0300000 - A0301000 ( MEM )
02 : 00.0 Vendor 0x1002 Device 0x683F
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
0x60e73018 : ISO - 8859 - 15.charset V52.1
0x626d42e8 : english_ISO - 8859 - 15.language V52.1
0x02a8b092 : exec . library V53.89
0x610325c8 : camdmidi . usbfd V53.5
0x6fe9a508 : cgxvideo . library V42.1
0x62f3c0e0 : Popmenu . mui V21.14
0x4e9ffe88 : info . datatype V52.3
0x4e9ff210 : Lamp . mcc V21.11
0x4ff8f724 : btree . library V53.3
0x4e9ff030 : Objectmap . mui V21.10
0x4ff8f4d4 : asyncio . library V50.3
0x4bbeae80 : Gauge . mui V21.10
0x4bbeade0 : Dtpic . mui V21.10
0x4bbeac00 : Popasl . mui V21.13
0x4bbeaac0 : Calltips . mcc V21.10
0x4bbea980 : String . mui V21.16
0x4bbea8e0 : Listtree . mcc V21.17
0x4bbea7a0 : Title . mui V21.21
0x4ae9419c : codesets . library V6.20
0x501f97a8 : muigfx . library V21.10
0x501ce2e8 : muimaster . library V21.83
0x4f6868f8 : infowindow .class V53.8
0x4bbea478 : tickbox . gadget V53.6
0x4cc4aa58 : pthreads . library V53.11
0x4cc48148 : update . library V53.13
0x4f6854c0 : expat . library V53.6
0x4fc50d70 : fuelgauge . gadget V53.8
0x4fb0e1a8 : timesync . library V53.7
0x4fc4f128 : DiskLED . docky V53.1
0x504cc798 : RAMDock . docky V50.4
0x504cc598 : GFXDock . docky V50.4
0x504cc298 : CPUDock . docky V50.5
0x5b37f868 : SMARTDock . docky V53.2
0x4f70a2c8 : X1kTemp . docky V53.10
0x618f7e88 : DateTime . docky V52.11
0x61d32700 : datebrowser . gadget V53.7
0x61782b50 : texteditor . gadget V53.24
0x618f7df0 : jpeg . datatype V53.7
0x618f9258 : Mixer . docky V52.5
0x618f9058 : NetDock . docky V51.6
0x61e33cc8 : KeymapSwitcher . docky V52.3
0x5ff78d38 : smartsubdock . docky V50.8
0x619b8cc8 : Spacer . docky V53.2
0x619b8e50 : anim . gadget V53.1
0x61ddc900 : shared . image V2.1
0x619ef840 : 8svx . datatype V53.2
0x619b8b48 : progressbar . gadget V53.10
0x61db4018 : smartbutton . docky V50.8
0x619362b0 : getcolor . gadget V53.10
0x619ef660 : gradientslider . gadget V53.6
0x619ef5c4 : colorwheel . gadget V53.7
0x61d32048 : radiobutton . gadget V53.9
0x61818024 : clipview . library V1.10
0x61ddc448 : wav . datatype V53.26
0x61ddc088 : sound . datatype V53.27
0x619b8548 : Separator . docky V53.2
0x5b336d70 : arexx .class V53.5
0x61ddc294 : mpega . library V2.4
0x5b333c38 : speedbar . gadget V53.12
0x5b336870 : slider . gadget V53.15
0x5b308760 : requester .class V53.18
0x5b336730 : bitmap . image V53.9
0x5b336230 : getfont . gadget V53.9
0x6fb5bb24 : device . audio V6.2
0x601645d8 : screenblanker . library V53.6
0x61d9bf40 : getfile . gadget V53.12
0x61d9bea0 : space . gadget V53.6
0x61d9be00 : integer . gadget V53.12
0x5fe52e88 : clicktab . gadget V53.44
0x6fb5b728 : chooser . gadget V53.21
0x61d9bcc0 : penmap . image V53.5
0x61d9ba40 : checkbox . gadget V53.9
0x5fe526e8 : filesave . audio V6.5
0x6fb5b528 : hdaudio . audio V6.22
0x60164b38 : listbrowser . gadget V53.62
0x60205c50 : string . gadget V53.20
0x61032b70 : scroller . gadget V53.14
0x61032cb0 : ilbm . datatype V53.3
0x611875d4 : usergroup . library V4.30
0x60be88f0 : bsdsocket . library V4.307
0x60f31df0 : mathieeedoubbas . library V52.1
0x60f313fc : hid . usbfd V53.12
0x6fc37f34 : camd . library V53.6
0x61121c7c : textclip . library V53.1
0x6fd54804 : xpkmaster . library V5.2
0x628eba5c : xadmaster . library V13.2
0x614517d0 : button . gadget V53.21
0x61451870 : glyph . image V53.3
0x613d2850 : window .class V54.7
0x612cc328 : popupmenu .class V53.2
0x60e8e308 : popupmenu . library V53.11
0x61451690 : label . image V53.13
0x614515f0 : drawlist . image V53.3
0x6fe9a5f8 : layout . gadget V54.2
0x612cc230 : bevel . image V53.6
0x614514b0 : png . datatype V53.10
0x626d9864 : picture . datatype V53.7
0x60e76ce4 : asl . library V53.49
0x629324f8 : timezone . library V53.8
0x60e6f408 : application . library V53.12
0x62d2ec6c : ft2 . library V53.2
0x626d5b10 : Picasso96API . library V54.18
0x6fee808c : workbench . library V53.53
0x60e76440 : gadtools . library V53.7
0x626c00cc : commodities . library V53.7
0x6292c540 : datatypes . library V54.6
0x62d2e974 : png . iconmodule V53.1
0x62a6f0cc : icon . library V53.16
0x6fde1920 : z . library V53.6
0x6fb8bbd8 : version . library V53.15
0x626cf490 : iffparse . library V53.1
0x6ffb95cc : locale . library V54.2
0x6fe9d41c : diskfont . library V53.9
0x6fd54ce8 : petunia . library V53.6
0x6fd54aa8 : diskcache . library V3.31
0x6fe87220 : dos . library V53.158
0x6fde10a4 : usbprivate . library V53.12
0x6fee4cbc : massstorage . usbfd V53.83
0x6fe9ae4c : hub . usbfd V53.10
0x6fee4c28 : bootkeyboard . usbfd V52.3
0x6fee4ba8 : bootmouse . usbfd V53.3
0x6fee4aa8 : mounter . library V53.19
0x6fe9a7fc : usbresource . library V53.12
0x6ff8f518 : hunk . library V53.4
0x6fe9a6f4 : elf . library V53.27
0x6ff364d0 : intuition . library V54.26
0x6ff532c0 : keymap . library V53.9
0x6ff51720 : cybergraphics . library V43.0
0x6ff8e9a0 : RadeonHD . chip V2.10
0x6ff8e924 : PCIGraphics . card V53.15
0x6ffa3420 : graphics . library V54.226
0x6fffe4f0 : layers . library V54.12
0x6ff24150 : rtg . library V54.90
0x6ff8f0e4 : nonvolatile . library V53.5
0x6ffab258 : newlib . library V53.30
0x6ff8d1ac : utility . library V54.1
0x6ffa8398 : expansion . library V53.1
0x6fc1958e : rexxsyslib . library V53.4 ( Legacy )
Devices
0x504d83b4 : netprinter . device V1.15 ( Legacy )
0x504cc0a4 : printer . device V53.1
0x4f70a5a4 : serial . device V54.1
0x6fb5bda4 : clipboard . device V53.3
0x61dfd3e4 : ahi . device V6.6
0x60b036f8 : rtl8139 . device V53.4
0x61530d94 : diskimage . device V53.4
0x6ff8dd10 : usbsys . device V53.12
0x6ff8faf0 : ehci . usbhcd V53.24
0x6ff8fa50 : ohci . usbhcd V53.21
0x6ff2c524 : cfide . device V53.0
0x6fee43b4 : sb600sata . device V53.20
0x6ff8d448 : console . device V53.99
0x6ff2c2b0 : ramdrive . device V52.6
0x6ff5350c : input . device V53.5
0x6fe9d024 : keyboard . device V53.11
0x6ff2c050 : timer . device V53.2
Tasks
AmiDock ( Waiting )
Stack : 0x61c28004 - 0x61c37ffc , pointer @ 0x61c378d0 ( Cookie OK )
Signals : SigRec 0x00000100 , SigWait 0x00240000
State : Process ( Waiting )
rhd_gc ( Waiting )
Stack : 0x6fe92000 - 0x6fe9a000 , pointer @ 0x6fe99f40 ( Cookie OK )
Signals : SigRec 0x80000001 , SigWait 0x00000000
State : Task ( Waiting )
ahi . device Unit Process ( Waiting )
Stack : 0x4975f004 - 0x49858ffc , pointer @ 0x49858ef0 ( Cookie OK )
Signals : SigRec 0xf000c000 , SigWait 0x00000100
State : Process ( Waiting )
camdmidi . usbfd ( Waiting )
Stack : 0x60de9004 - 0x60df4ffc , pointer @ 0x60df4f30 ( Cookie OK )
Signals : SigRec 0x60001000 , SigWait 0x00000100
State : Process ( Waiting )
ClickToFront ( Waiting )
Stack : 0x5b2dc004 - 0x5b2ebffc , pointer @ 0x5b2eb9c0 ( Cookie OK )
Signals : SigRec 0xe000d000 , SigWait 0x00000100
State : Process ( Waiting )
input . device ( Waiting )
Stack : 0x6fe72000 - 0x6fe82000 , pointer @ 0x6fe81ed0 ( Cookie OK )
Signals : SigRec 0x80000000 , SigWait 0x00000000
State : Task ( Waiting )
SFS DosList handler ( Waiting )
Stack : 0x6300a004 - 0x6300dffc , pointer @ 0x6300ded0 ( Cookie OK )
Signals : SigRec 0x80000000 , SigWait 0x00000000
State : Process ( Waiting )
USB stack ( Waiting )
Stack : 0x6fe8a000 - 0x6fe8e000 , pointer @ 0x6fe8def0 ( Cookie OK )
Signals : SigRec 0xf8007000 , SigWait 0x00000000
State : Task ( Waiting )
OHCI Controller Task Unit 0 ( Waiting )
Stack : 0x6fdd9000 - 0x6fde1000 , pointer @ 0x6fde0ee0 ( Cookie OK )
Signals : SigRec 0xbc009000 , SigWait 0x00000000
State : Task ( Waiting )
OHCI Controller Task Unit 1 ( Waiting )
Stack : 0x6fdb1000 - 0x6fdb9000 , pointer @ 0x6fdb8ee0 ( Cookie OK )
Signals : SigRec 0xbc009000 , SigWait 0x00000000
State : Task ( Waiting )
OHCI Controller Task Unit 2 ( Waiting )
Stack : 0x6fd8d000 - 0x6fd95000 , pointer @ 0x6fd94ee0 ( Cookie OK )
Signals : SigRec 0xbc009000 , SigWait 0x00000000
State : Task ( Waiting )
OHCI Controller Task Unit 4 ( Waiting )
Stack : 0x6fd49000 - 0x6fd51000 , pointer @ 0x6fd50ee0 ( Cookie OK )
Signals : SigRec 0xbc009000 , SigWait 0x00000000
State : Task ( Waiting )
EHCI Controller Task Unit 0 ( Waiting )
Stack : 0x6fd21000 - 0x6fd29000 , pointer @ 0x6fd28ee0 ( Cookie OK )
Signals : SigRec 0xbe009000 , SigWait 0x00000000
State : Task ( Waiting )
OHCI Controller Task Unit 3 ( Waiting )
Stack : 0x6fd65000 - 0x6fd6d000 , pointer @ 0x6fd6cee0 ( Cookie OK )
Signals : SigRec 0xbc009000 , SigWait 0x00000000
State : Task ( Waiting )
sb600sata . device - chip 0 port 0 ( Waiting )
Stack : 0x6fe30000 - 0x6fe38000 , pointer @ 0x6fe37ef0 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x20000000
State : Task ( Waiting )
page_sweep ( Waiting )
Stack : 0x6fe00004 - 0x6fe07ffc , pointer @ 0x6fe07e40 ( Cookie OK )
Signals : SigRec 0x80000000 , SigWait 0x00000000
State : Task ( Waiting )
cfide . device task ( Waiting )
Stack : 0x6fe08000 - 0x6fe10000 , pointer @ 0x6fe0ff10 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x00000000
State : Task ( Waiting )
Background CLI [ smbfs '//Fritz.Box/Nosgoth/Fritz_HDD/' ] ( Waiting )
Stack : 0x4df61004 - 0x4df71004 , pointer @ 0x4df70bc0 ( Cookie OK )
Signals : SigRec 0x80009000 , SigWait 0x00000100
State : Process ( Waiting )
hid . usbfd ( Waiting )
Stack : 0x60db8004 - 0x60dbfffc , pointer @ 0x60dbfe60 ( Cookie OK )
Signals : SigRec 0xe0000000 , SigWait 0x00000100
State : Process ( Waiting )
HID Mouse ( Waiting )
Stack : 0x60b80004 - 0x60b8fffc , pointer @ 0x60b8fef0 ( Cookie OK )
Signals : SigRec 0x80001000 , SigWait 0x00000000
State : Process ( Waiting )
ICD1 / CDFileSystem 53.4 ( Waiting )
Stack : 0x60d24004 - 0x60d33ffc , pointer @ 0x60d33f00 ( Cookie OK )
Signals : SigRec 0x00000100 , SigWait 0x00000000
State : Process ( Waiting )
ICD0 / CDFileSystem 53.4 ( Waiting )
Stack : 0x60da4004 - 0x60db3ffc , pointer @ 0x60db3f00 ( Cookie OK )
Signals : SigRec 0x00000100 , SigWait 0x00000000
State : Process ( Waiting )
CD0 / CDFileSystem 53.4 ( Waiting )
Stack : 0x62fee004 - 0x62ff1ffc , pointer @ 0x62ff1f00 ( Cookie OK )
Signals : SigRec 0x00000100 , SigWait 0x00000000
State : Process ( Waiting )
SSD0 / SmartFilesystem 1.293 ( Waiting )
Stack : 0x6fb34004 - 0x6fb37ffc , pointer @ 0x6fb37e80 ( Cookie OK )
Signals : SigRec 0xe0000100 , SigWait 0x10000000
State : Process ( Waiting )
SSD2 / SmartFilesystem 1.293 ( Waiting )
Stack : 0x62dfc004 - 0x62dffffc , pointer @ 0x62dffe80 ( Cookie OK )
Signals : SigRec 0xe0000100 , SigWait 0x10000000
State : Process ( Waiting )
reaper . task ( Waiting )
Stack : 0x62a44004 - 0x62a4bffc , pointer @ 0x62a4be20 ( Cookie OK )
Signals : SigRec 0x00007000 , SigWait 0x00000000
State : Process ( Waiting )
hid . usbfd ( Waiting )
Stack : 0x60dc4004 - 0x60dcbffc , pointer @ 0x60dcbe60 ( Cookie OK )
Signals : SigRec 0xe0000000 , SigWait 0x00000100
State : Process ( Waiting )
HID Keyboard ( Waiting )
Stack : 0x60b9c004 - 0x60babffc , pointer @ 0x60babee0 ( Cookie OK )
Signals : SigRec 0x90001000 , SigWait 0x00000000
State : Process ( Waiting )
RAM / ram - handler 53.172 ( Waiting )
Stack : 0x62946004 - 0x62949ffc , pointer @ 0x62949cf0 ( Cookie OK )
Signals : SigRec 0x80000000 , SigWait 0x00000100
State : Process ( Waiting )
SSD1 / SmartFilesystem 1.293 ( Waiting )
Stack : 0x62edd004 - 0x62ee0ffc , pointer @ 0x62ee0e80 ( Cookie OK )
Signals : SigRec 0xe0000100 , SigWait 0x10000000
State : Process ( Waiting )
SSD5 / SmartFilesystem 1.293 ( Waiting )
Stack : 0x62b85004 - 0x62b88ffc , pointer @ 0x62b88e80 ( Cookie OK )
Signals : SigRec 0xe0000100 , SigWait 0x10000000
State : Process ( Waiting )
SSD3 / SmartFilesystem 1.293 ( Waiting )
Stack : 0x62d27004 - 0x62d2affc , pointer @ 0x62d2ae80 ( Cookie OK )
Signals : SigRec 0xe0000100 , SigWait 0x10000000
State : Process ( Waiting )
SSD4 / SmartFilesystem 1.293 ( Waiting )
Stack : 0x62c66004 - 0x62c69ffc , pointer @ 0x62c69e80 ( Cookie OK )
Signals : SigRec 0xe0000100 , SigWait 0x10000000
State : Process ( Waiting )
MainIPH0 / CrossDOSFileSystem 53.11 ( Waiting )
Stack : 0x60c3c004 - 0x60c4bffc , pointer @ 0x60c4be80 ( Cookie OK )
Signals : SigRec 0x40000100 , SigWait 0x00000000
State : Process ( Waiting )
MainIPC0 / CrossDOSFileSystem 53.11 ( Waiting )
Stack : 0x6113c004 - 0x6114bffc , pointer @ 0x6114be80 ( Cookie OK )
Signals : SigRec 0x40000100 , SigWait 0x00000000
State : Process ( Waiting )
pager ( Waiting )
Stack : 0x62a20004 - 0x62a3fffc , pointer @ 0x62a3feb0 ( Cookie OK )
Signals : SigRec 0x80001000 , SigWait 0x00000000
State : Process ( Waiting )
rtl8139 . device.0 ( Waiting )
Stack : 0x601ed004 - 0x601fcffc , pointer @ 0x601fced0 ( Cookie OK )
Signals : SigRec 0x78008000 , SigWait 0x00000000
State : Process ( Waiting )
pthread id 1 ( Waiting )
Stack : 0x3b35d004 - 0x3b456ffc , pointer @ 0x3b456e10 ( Cookie OK )
Signals : SigRec 0x10000000 , SigWait 0x00000000
State : Process ( Waiting )
WinFrame 1 Process ( Waiting )
Stack : 0x4b80d004 - 0x4b84cffc , pointer @ 0x4b84ce80 ( Cookie OK )
Signals : SigRec 0xff800000 , SigWait 0x00000000
State : Process ( Waiting )
IDF0 / FastFileSystem 53.2 ( Waiting )
Stack : 0x60f70004 - 0x60f7fffc , pointer @ 0x60f7fea0 ( Cookie OK )
Signals : SigRec 0xa8000100 , SigWait 0x00000000
State : Process ( Waiting )
IDF1 / FastFileSystem 53.2 ( Waiting )
Stack : 0x60fbd004 - 0x60fccffc , pointer @ 0x60fccea0 ( Cookie OK )
Signals : SigRec 0xa8000100 , SigWait 0x00000000
State : Process ( Waiting )
IPH0 / CrossDOSFileSystem 53.11 ( Waiting )
Stack : 0x60c58004 - 0x60c67ffc , pointer @ 0x60c67eb0 ( Cookie OK )
Signals : SigRec 0x00010100 , SigWait 0x00000000
State : Process ( Waiting )
IPC0 / CrossDOSFileSystem 53.11 ( Waiting )
Stack : 0x61158004 - 0x61167ffc , pointer @ 0x61167eb0 ( Cookie OK )
Signals : SigRec 0x00010100 , SigWait 0x00000000
State : Process ( Waiting )
PAR / Port - Handler 52.2 ( Waiting )
Stack : 0x5bdb0004 - 0x5bdbfffc , pointer @ 0x5bdbfeb0 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x00000100
State : Process ( Waiting )
PRT / Port - Handler 52.2 ( Waiting )
Stack : 0x5bcfc004 - 0x5bd0bffc , pointer @ 0x5bd0beb0 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x00000100
State : Process ( Waiting )
RANDOM / Random - Handler 52.1 ( Waiting )
Stack : 0x60e0a004 - 0x60e19ffc , pointer @ 0x60e19ea0 ( Cookie OK )
Signals : SigRec 0x00000100 , SigWait 0x00000000
State : Process ( Waiting )
SER / Port - Handler 52.2 ( Waiting )
Stack : 0x5bd18004 - 0x5bd27ffc , pointer @ 0x5bd27eb0 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x00000100
State : Process ( Waiting )
SER1 / Port - Handler 52.2 ( Waiting )
Stack : 0x5bd34004 - 0x5bd43ffc , pointer @ 0x5bd43eb0 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x00000100
State : Process ( Waiting )
URL / launch - handler 53.38 ( Waiting )
Stack : 0x60ea4004 - 0x60f1effc , pointer @ 0x60f1af60 ( Cookie OK )
Signals : SigRec 0x80000000 , SigWait 0x00000100
State : Process ( Waiting )
dos_filedir_notify ( Waiting )
Stack : 0x6fb91004 - 0x6fb94ffc , pointer @ 0x6fb94aa0 ( Cookie OK )
Signals : SigRec 0x40001000 , SigWait 0x80000000
State : Process ( Waiting )
CON / con - handler 53.78 ( Waiting )
Stack : 0x4b861004 - 0x4b870ffc , pointer @ 0x4b870df0 ( Cookie OK )
Signals : SigRec 0xb0000100 , SigWait 0x00000000
State : Process ( Waiting )
ENV / env - handler 54.5 ( Waiting )
Stack : 0x62a08004 - 0x62a0bffc , pointer @ 0x62a0bea0 ( Cookie OK )
Signals : SigRec 0x80000000 , SigWait 0x00000100
State : Process ( Waiting )
AUX / aux - handler 53.4 ( Waiting )
Stack : 0x5bd9c004 - 0x5bdabffc , pointer @ 0x5bdabec0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
AUX1 / aux - handler 53.4 ( Waiting )
Stack : 0x5bdc4004 - 0x5bdd3ffc , pointer @ 0x5bdd3ec0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
CON / con - handler 53.78 ( Waiting )
Stack : 0x50053004 - 0x50062ffc , pointer @ 0x50062df0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
CON / con - handler 53.78 ( Waiting )
Stack : 0x6196e004 - 0x6197dffc , pointer @ 0x6197ddf0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
CON / con - handler 53.78 ( Waiting )
Stack : 0x61a82004 - 0x61a91ffc , pointer @ 0x61a91df0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
CON / con - handler 53.78 ( Waiting )
Stack : 0x61b7e004 - 0x61b8dffc , pointer @ 0x61b8ddf0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
CON / con - handler 53.78 ( Waiting )
Stack : 0x5b1ef004 - 0x5b1feffc , pointer @ 0x5b1fedf0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
CON / con - handler 53.78 ( Waiting )
Stack : 0x5b287004 - 0x5b296ffc , pointer @ 0x5b296df0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
CON / con - handler 53.78 ( Waiting )
Stack : 0x5b353004 - 0x5b362ffc , pointer @ 0x5b362df0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
CON / con - handler 53.78 ( Waiting )
Stack : 0x5b3e3004 - 0x5b3f2ffc , pointer @ 0x5b3f2df0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
CON / con - handler 53.78 ( Waiting )
Stack : 0x61c0c004 - 0x61c1bffc , pointer @ 0x61c1bdf0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
CON / con - handler 53.78 ( Waiting )
Stack : 0x62904004 - 0x62913ffc , pointer @ 0x62913df0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
AUDIO / AHI - Handler 6.2 ( Waiting )
Stack : 0x60c94004 - 0x60ca4004 , pointer @ 0x60ca3ea0 ( Cookie OK )
Signals : SigRec 0x00000100 , SigWait 0x00000000
State : Process ( Waiting )
Camd Wait Proc ( Waiting )
Stack : 0x60fd9004 - 0x60ff1ffc , pointer @ 0x60ff1ee0 ( Cookie OK )
Signals : SigRec 0x80001000 , SigWait 0x00000000
State : Process ( Waiting )
APPDIR / appdir - handler - in - dos 53.158 ( Waiting )
Stack : 0x629b4004 - 0x629bbffc , pointer @ 0x629bbd70 ( Cookie OK )
Signals : SigRec 0x80000000 , SigWait 0x00000100
State : Process ( Waiting )
CON / con - handler 53.78 ( Waiting )
Stack : 0x62a60004 - 0x62a67ffc , pointer @ 0x62a67df0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
RAW / con - handler 53.78 ( Waiting )
Stack : 0x62a9c004 - 0x62aa3ffc , pointer @ 0x62aa3df0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
CON / con - handler 53.78 ( Waiting )
Stack : 0x62ab0004 - 0x62ab7ffc , pointer @ 0x62ab7df0 ( Cookie OK )
Signals : SigRec 0xa0000100 , SigWait 0x00000000
State : Process ( Waiting )
dos_nbmd_process ( Waiting )
Stack : 0x6fba1004 - 0x6fba4ffc , pointer @ 0x6fba4f00 ( Cookie OK )
Signals : SigRec 0x00001100 , SigWait 0x00000000
State : Process ( Waiting )
dos_lock_handler ( Waiting )
Stack : 0x6fba9004 - 0x6fbacffc , pointer @ 0x6fbaced0 ( Cookie OK )
Signals : SigRec 0x00001100 , SigWait 0x00000000
State : Process ( Waiting )
RexxMaster ( Waiting )
Stack : 0x60b50004 - 0x60b60004 , pointer @ 0x60b5ff40 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x00000100
State : Process ( Waiting )
diskimage . device unit 7 ( Waiting )
Stack : 0x60c1c004 - 0x60c2fffc , pointer @ 0x60c2fc20 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x00000100
State : Process ( Waiting )
diskimage . device unit 5 ( Waiting )
Stack : 0x60cf5004 - 0x60d08ffc , pointer @ 0x60d08c20 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x00000100
State : Process ( Waiting )
diskimage . device unit 4 ( Waiting )
Stack : 0x60d75004 - 0x60d88ffc , pointer @ 0x60d88c20 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x00000100
State : Process ( Waiting )
diskimage . device unit 0 ( Waiting )
Stack : 0x60f40004 - 0x60f53ffc , pointer @ 0x60f53c20 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x00000100
State : Process ( Waiting )
diskimage . device unit 1 ( Waiting )
Stack : 0x60f9d004 - 0x60fb0ffc , pointer @ 0x60fb0c20 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x00000100
State : Process ( Waiting )
diskimage . device unit 6 ( Waiting )
Stack : 0x6100a004 - 0x6101dffc , pointer @ 0x6101dc20 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x00000100
State : Process ( Waiting )
TEXTCLIP / textclip - handler 53.1 ( Waiting )
Stack : 0x60e3f004 - 0x60e4effc , pointer @ 0x60e4ee60 ( Cookie OK )
Signals : SigRec 0x80000000 , SigWait 0x00000100
State : Process ( Waiting )
compose . task ( Waiting )
Stack : 0x5ff79000 - 0x5ff81000 , pointer @ 0x5ff80f00 ( Cookie OK )
Signals : SigRec 0x00000021 , SigWait 0x00000000
State : Task ( Waiting )
Workbench ( Waiting )
Stack : 0x60ac7004 - 0x60ad6ffc , pointer @ 0x60ad6e70 ( Cookie OK )
Signals : SigRec 0x80000000 , SigWait 0x00000000
State : Process ( Waiting )
ScreenBlanker Library . ( Waiting )
Stack : 0x5b2b7004 - 0x5b2c7ffc , pointer @ 0x5b2c7ed0 ( Cookie OK )
Signals : SigRec 0xb4001000 , SigWait 0x00000100
State : Process ( Waiting )
Workbench DosList Notify ( Waiting )
Stack : 0x61e04004 - 0x61e13ffc , pointer @ 0x61e13f10 ( Cookie OK )
Signals : SigRec 0x00003000 , SigWait 0x00000100
State : Process ( Waiting )
texteditor . gadget Clipboard Server ( Waiting )
Stack : 0x4f8f2004 - 0x4f90affc , pointer @ 0x4f90aeb0 ( Cookie OK )
Signals : SigRec 0x80000000 , SigWait 0x00000100
State : Process ( Waiting )
ContextMenus Command Dispatcher ( Waiting )
Stack : 0x4f6ac004 - 0x4f6bbffc , pointer @ 0x4f6bbf00 ( Cookie OK )
Signals : SigRec 0x80001000 , SigWait 0x00000000
State : Process ( Waiting )
ramlib ( Waiting )
Stack : 0x6295a004 - 0x62972ffc , pointer @ 0x62972ef0 ( Cookie OK )
Signals : SigRec 0x80001000 , SigWait 0x00000100
State : Process ( Waiting )
MUI imagespace screen notify ( Waiting )
Stack : 0x4ed0e004 - 0x4ed1dffc , pointer @ 0x4ed1dce0 ( Cookie OK )
Signals : SigRec 0x80009000 , SigWait 0x00000100
State : Process ( Waiting )
string . gadget server ( Waiting )
Stack : 0x61de4004 - 0x61df3ffc , pointer @ 0x61df3d60 ( Cookie OK )
Signals : SigRec 0x40000000 , SigWait 0x00000100
State : Process ( Waiting )
Workbench Clipboard Server ( Waiting )
Stack : 0x5cc00004 - 0x5cc0fffc , pointer @ 0x5cc0feb0 ( Cookie OK )
Signals : SigRec 0x80000000 , SigWait 0x00000100
State : Process ( Waiting )
TCP / IP Control ( Waiting )
Stack : 0x60226004 - 0x60235ffc , pointer @ 0x60235d90 ( Cookie OK )
Signals : SigRec 0xf8009080 , SigWait 0x00000000
State : Process ( Waiting )
pthread id 2 ( Waiting )
Stack : 0x49661004 - 0x4975affc , pointer @ 0x4975adc0 ( Cookie OK )
Signals : SigRec 0xe0000000 , SigWait 0x00000000
State : Process ( Waiting )
NotificationServer ( Waiting )
Stack : 0x6198a004 - 0x619a9ffc , pointer @ 0x619a9af0 ( Cookie OK )
Signals : SigRec 0xbc001000 , SigWait 0x00000100
State : Process ( Waiting )
ELF Collector ( Waiting )
Stack : 0x62ff6004 - 0x63005ffc , pointer @ 0x63005e30 ( Cookie OK )
Signals : SigRec 0x00000100 , SigWait 0x00000000
State : Process ( Waiting )
hub . usbfd ( Waiting )
Stack : 0x6fcd1004 - 0x6fcd8ffc , pointer @ 0x6fcd8ee0 ( Cookie OK )
Signals : SigRec 0x30000000 , SigWait 0x00000000
State : Task ( Waiting )
hub . usbfd ( Waiting )
Stack : 0x6fcdd004 - 0x6fce4ffc , pointer @ 0x6fce4ee0 ( Cookie OK )
Signals : SigRec 0x30000000 , SigWait 0x00000000
State : Task ( Waiting )
ADRipper ( Waiting )
Stack : 0x50067004 - 0x5007fffc , pointer @ 0x5007f8b0 ( Cookie OK )
Signals : SigRec 0x98000000 , SigWait 0x00000080
State : Process ( Waiting )
hub . usbfd ( Waiting )
Stack : 0x6fcc1004 - 0x6fcc8ffc , pointer @ 0x6fcc8ee0 ( Cookie OK )
Signals : SigRec 0x30000000 , SigWait 0x00000000
State : Task ( Waiting )
hub . usbfd ( Waiting )
Stack : 0x6fca9004 - 0x6fcb0ffc , pointer @ 0x6fcb0ee0 ( Cookie OK )
Signals : SigRec 0x30000000 , SigWait 0x00000000
State : Task ( Waiting )
hub . usbfd ( Waiting )
Stack : 0x6fc9d004 - 0x6fca4ffc , pointer @ 0x6fca4ee0 ( Cookie OK )
Signals : SigRec 0x30000000 , SigWait 0x00000000
State : Task ( Waiting )
hub . usbfd ( Waiting )
Stack : 0x6fcb5004 - 0x6fcbcffc , pointer @ 0x6fcbcee0 ( Cookie OK )
Signals : SigRec 0x30000000 , SigWait 0x00000000
State : Task ( Waiting )
Mounter GUI ( Waiting )
Stack : 0x61195004 - 0x611a8ffc , pointer @ 0x611a8de0 ( Cookie OK )
Signals : SigRec 0x80007000 , SigWait 0x00000000
State : Process ( Waiting )
DiskImageGUI ( Waiting )
Stack : 0x61ae5004 - 0x61af4ffc , pointer @ 0x61af4d90 ( Cookie OK )
Signals : SigRec 0xd7009000 , SigWait 0x00000100
State : Process ( Waiting )
TCP / IP Superserver ( Waiting )
Stack : 0x6025a004 - 0x60269ffc , pointer @ 0x602699c0 ( Cookie OK )
Signals : SigRec 0xd0000080 , SigWait 0x00000000
State : Process ( Waiting )
TCP / IP Configuration ( Waiting )
Stack : 0x60276004 - 0x60285ffc , pointer @ 0x60285de0 ( Cookie OK )
Signals : SigRec 0xf8003000 , SigWait 0x00000000
State : Process ( Waiting )
Wet ( Waiting )
Stack : 0x5b203004 - 0x5b212ffc , pointer @ 0x5b20f1b0 ( Cookie OK )
Signals : SigRec 0x6e001000 , SigWait 0x00000100
State : Process ( Waiting )
ScreenBlankerEngine ( Waiting )
Stack : 0x5b36f004 - 0x5b37effc , pointer @ 0x5b37ebb0 ( Cookie OK )
Signals : SigRec 0xd8001000 , SigWait 0x00000100
State : Process ( Waiting )
application . library messageserver ( Waiting )
Stack : 0x60e6e000 - 0x60e6efa0 , pointer @ 0x60e6eee0 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x00000000
State : Task ( Waiting )
clipview . library server ( Waiting )
Stack : 0x61757004 - 0x61776ffc , pointer @ 0x61776dd0 ( Cookie OK )
Signals : SigRec 0xd8003000 , SigWait 0x00000000
State : Process ( Waiting )
ContextMenus ( Waiting )
Stack : 0x5b2a3004 - 0x5b2b2ffc , pointer @ 0x5b2b2c50 ( Cookie OK )
Signals : SigRec 0xe0001000 , SigWait 0x0c000000
State : Process ( Waiting )
Background CLI [ SYS : System / AmiUpdate / AmiUpdate ] ( Waiting )
Stack : 0x4cc1e004 - 0x4cc3dffc , pointer @ 0x4cc3d340 ( Cookie OK )
Signals : SigRec 0xec001000 , SigWait 0x00000000
State : Process ( Waiting )
ConClip ( Waiting )
Stack : 0x60bf0004 - 0x60bffffc , pointer @ 0x60bffe80 ( Cookie OK )
Signals : SigRec 0x80000000 , SigWait 0x00000000
State : Process ( Waiting )
« IPrefs » ( Waiting )
Stack : 0x6168b004 - 0x6169affc , pointer @ 0x6169a950 ( Cookie OK )
Signals : SigRec 0x0000f000 , SigWait 0x20000100
State : Process ( Waiting )
AsyncWB ( Waiting )
Stack : 0x5b41b004 - 0x5b42affc , pointer @ 0x5b42ae80 ( Cookie OK )
Signals : SigRec 0xc0001000 , SigWait 0x00000100
State : Process ( Waiting )
KeymapSwitcher . docky ( Waiting )
Stack : 0x61787004 - 0x61796ffc , pointer @ 0x61796ec0 ( Cookie OK )
Signals : SigRec 0x80001000 , SigWait 0x00000000
State : Process ( Waiting )
UsbSound ( Waiting )
Stack : 0x61b92004 - 0x61ba1ffc , pointer @ 0x61ba1c10 ( Cookie OK )
Signals : SigRec 0xc0001000 , SigWait 0x00000000
State : Process ( Waiting )
datatypes . library ( Waiting )
Stack : 0x6142a004 - 0x61439ffc , pointer @ 0x61439e00 ( Cookie OK )
Signals : SigRec 0x80001000 , SigWait 0x00000000
State : Process ( Waiting )
smartbutton . docky ( Waiting )
Stack : 0x617f8004 - 0x61807ffc , pointer @ 0x61807e90 ( Cookie OK )
Signals : SigRec 0x80001000 , SigWait 0x00000000
State : Process ( Waiting )
MouseBlanker ( Waiting )
Stack : 0x61ba6004 - 0x61bb5ffc , pointer @ 0x61bb59d0 ( Cookie OK )
Signals : SigRec 0xc000d000 , SigWait 0x00000100
State : Process ( Waiting )
RAWBInfo ( Waiting )
Stack : 0x5b3a3004 - 0x5b3b2ffc , pointer @ 0x5b3b2e90 ( Cookie OK )
Signals : SigRec 0x80001000 , SigWait 0x00000100
State : Process ( Waiting )
DefIcons ( Waiting )
Stack : 0x5b3ff004 - 0x5b40effc , pointer @ 0x5b40ed90 ( Cookie OK )
Signals : SigRec 0x80009000 , SigWait 0x00000100
State : Process ( Waiting )
Background CLI [ Tools : Audio / Tools / CamdTools / MidiThru / MidiThru ] ( Waiting )
Stack : 0x601b6004 - 0x601c5ffc , pointer @ 0x601c5b20 ( Cookie OK )
Signals : SigRec 0x80001000 , SigWait 0x00000100
State : Process ( Waiting )
TCP / IP Log ( Waiting )
Stack : 0x60292004 - 0x602a1ffc , pointer @ 0x602a1ed0 ( Cookie OK )
Signals : SigRec 0x80003000 , SigWait 0x00000000
State : Process ( Waiting )
USB stack Process ( Waiting )
Stack : 0x611ad004 - 0x611bcffc , pointer @ 0x611bceb0 ( Cookie OK )
Signals : SigRec 0x80001000 , SigWait 0x00000000
State : Process ( Waiting )
MassStorage Notifier ( Waiting )
Stack : 0x6fde5000 - 0x6fdecd00 , pointer @ 0x6fdecc40 ( Cookie OK )
Signals : SigRec 0x80001000 , SigWait 0x00000000
State : Task ( Waiting )
DST watcher ( Waiting )
Stack : 0x615e6004 - 0x615f5ffc , pointer @ 0x615f5ee0 ( Cookie OK )
Signals : SigRec 0xc0000000 , SigWait 0x00000000
State : Process ( Waiting )
hub . usbfd ( Waiting )
Stack : 0x6fbc1004 - 0x6fbc8ffc , pointer @ 0x6fbc8ee0 ( Cookie OK )
Signals : SigRec 0x30000000 , SigWait 0x00000000
State : Task ( Waiting )
hub . usbfd ( Waiting )
Stack : 0x6fbfd004 - 0x6fc04ffc , pointer @ 0x6fc04ee0 ( Cookie OK )
Signals : SigRec 0x30000000 , SigWait 0x00000000
State : Task ( Waiting )
Shell Process [ scummvm ] ( Crashed )
Stack : 0x46ebf004 - 0x46fb8ffc , pointer @ 0x46f726c0 ( Cookie OK )
Signals : SigRec 0x00000100 , SigWait 0x20000000
State : Process ( Crashed )
ADRipper child process ( Ready )
Stack : 0x4581e004 - 0x4585dffc , pointer @ 0x4583e920 ( Cookie OK )
Signals : SigRec 0x00000100 , SigWait 0xc0000100
State : Process ( Ready )
Background CLI [ Tools : Utilities / CANDI / data / Dandelion ] ( Ready )
Stack : 0x616d2004 - 0x616e1ffc , pointer @ 0x616e1aa0 ( Cookie OK )
Signals : SigRec 0x40000000 , SigWait 0x54000100
State : Process ( Ready )
Mounter Task ( Waiting )
Stack : 0x6fded000 - 0x6fdfba60 , pointer @ 0x6fdfb940 ( Cookie OK )
Signals : SigRec 0xb0001000 , SigWait 0x00000000
State : Task ( Waiting )
Mounter Companion Process ( Waiting )
Stack : 0x611c6004 - 0x611d5ffc , pointer @ 0x611d5f10 ( Cookie OK )
Signals : SigRec 0x80003000 , SigWait 0x00000000
State : Process ( Waiting )
ramlib . support ( Waiting )
Stack : 0x62977004 - 0x6298fffc , pointer @ 0x6298fed0 ( Cookie OK )
Signals : SigRec 0x80005000 , SigWait 0x00000000
State : Process ( Waiting )
CANDI ( Waiting )
Stack : 0x61a9e004 - 0x61aadffc , pointer @ 0x61aad7d0 ( Cookie OK )
Signals : SigRec 0x70005000 , SigWait 0x00000000
State : Process ( Waiting )
dos_signal_server ( Waiting )
Stack : 0x6fb99004 - 0x6fb9cffc , pointer @ 0x6fb9cee0 ( Cookie OK )
Signals : SigRec 0x0000f000 , SigWait 0x00000000
State : Process ( Waiting )
dos_appdir_server ( Waiting )
Stack : 0x6fb71004 - 0x6fb78ffc , pointer @ 0x6fb78d10 ( Cookie OK )
Signals : SigRec 0x80005000 , SigWait 0x00000000
State : Process ( Waiting )
CPUDock_idleTask ( Ready )
Stack : 0x4f68f000 - 0x4f693000 , pointer @ 0x4f692ea0 ( Cookie OK )
Signals : SigRec 0x80000000 , SigWait 0xc0000000
State : Task ( Ready )
idle . task ( Ready )
Stack : 0x6ff52000 - 0x6ff53000 , pointer @ 0x6ff52fd0 ( Cookie OK )
Signals : SigRec 0x00000000 , SigWait 0x00000000
State : Task ( Ready )
Re: gcc -fexceptions
Posted on:
2017/12/1 20:51
#20
Not too shy to talk
Joined: 2007/3/30 18:39Last Login
: 11/15 19:54
Group:
Registered Users
@Raziel
Quote:
@broadblues I see, thank you again Will reconfigure and compile all my projects and if anything comes up may bother you againThis gcc 5.4 is intended to become the official version but it is necessary to check that there are all features we need and that they work.
That's maybe not comfortable but joining our efforts, we will have a solid compiler (and tools ready for more recent version like 6.1).
Don't hesitate to create issues in the project on github.
Currently Active Users Viewing This Thread:
1
(
0 members
and 1 Anonymous Users
)