From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: * X-Spam-Status: No, score=1.0 required=5.0 tests=BAYES_40,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,a555752235c318a9 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!f14g2000cwb.googlegroups.com!not-for-mail From: "mferracini" Newsgroups: comp.lang.ada Subject: Re: i'm going crazy with task Date: 2 Dec 2004 01:44:14 -0800 Organization: http://groups.google.com Message-ID: <1101980654.258589.267930@f14g2000cwb.googlegroups.com> References: <1101830171.387036.135810@f14g2000cwb.googlegroups.com> <41ad991b$0$25066$ba620e4c@news.skynet.be> <5eorq0lbcd90apmjoe46ob4pj96pchtcno@4ax.com> <41adf355$0$13460$ba620e4c@news.skynet.be> NNTP-Posting-Host: 213.215.153.30 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1101980657 23187 127.0.0.1 (2 Dec 2004 09:44:17 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 2 Dec 2004 09:44:17 +0000 (UTC) In-Reply-To: <41adf355$0$13460$ba620e4c@news.skynet.be> User-Agent: G2/0.2 Complaints-To: groups-abuse@google.com Injection-Info: f14g2000cwb.googlegroups.com; posting-host=213.215.153.30; posting-account=OjhBzA0AAAC7IWpsLrvIpzjmXdzmh93y Xref: g2news1.google.com comp.lang.ada:6712 Date: 2004-12-02T01:44:14-08:00 List-Id: Adrien Plisson wrote: > i was only making suppositions on what the OP was trying to do, i don't speak > on behalf of him. so, until he posts some more informations, we can't assume > anything on what he is trying to do. i only raised the point about the > scheduler because the term is confusing. i'm sorry, my english is not good :) i need to write a "simulator" of a task scheduler. my idea is: cerate a new task with an entry called "run" that esecute user-defined code in this way: ----------------------------------------------------- with Task_Maneger; with User_App; package Test_1 is new Task_Menager.Det_Task (Task_Job => User_App.Task_Job); ----------------------------------------------------- when i create the task "Test_1" i need to pass his poiter to the scheduler, that call "Task_job.run" . greatings from Italy Michele.