2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 Desc: Display an alert.
8 #include <exec/execbase.h>
9 #include <aros/libcall.h>
12 #include <exec/alerts.h>
13 #include <proto/exec.h>
14 #include <proto/kernel.h>
15 #include <aros/kernel.h>
16 #include <proto/arossupport.h>
18 /*****************************************************************************
25 AROS_LHA(ULONG
, alertNum
, D7
),
28 struct ExecBase
*, SysBase
, 18, Exec
)
31 Alerts the user of a serious system problem.
34 alertNum - This is a number which contains information about
35 the reason for the call.
38 This routine may return, if the alert is not a dead-end one.
41 You should not call this routine because it halts the machine,
42 displays the message and then may reboot it.
45 // Dead-End alert: 680x0 Access To Odd Address
55 26-08-95 digulla created after EXEC-Routine
56 05-04-2008 danielo modified for osx
58 ******************************************************************************/
64 CALLHOOKPKT(krnAlertImpl
,0,TAGLIST(TAG_USER
,alertNum
,TAG_DONE
));