Kevin Brown writes:
> All I wanted to do was to call GNAT.Debug_Pool.Configure().
> Ideally, I'd want to call it only once at program initialization
> time, but I don't know how to do that from within vfs.adb, so I
> settled on calling it from the finalization code.

You can add elaboration code like this:

package body VFS is
   ...
begin
   GNAT.Debug_Pool.Configure (Pool => My_Pool);
end VFS;

-- 
Ludovic Brenta.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to