2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
5 Desc: Supervisor() - Execute some code in a privileged environment.
9 #include <proto/exec.h>
11 /* See rom/exec/supervisor.c for documentation */
13 AROS_LH1(ULONG
, Supervisor
,
14 AROS_LHA(ULONG_FUNC
, userFunction
, A5
),
15 struct ExecBase
*, SysBase
, 5, Exec
)
19 register ULONG retval
;
24 retval
= (*userFunction
)();