-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathso.adb
48 lines (41 loc) · 1.41 KB
/
so.adb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
-- Copyright (C) 2016, 2017 Free Software Foundation, Inc.
-- This file is part of the FreeRTOS-Ada package.
--
-- The FreeRTOS-Ada package is free software; you can redistribute
-- it and/or modify it under the terms of the GNU General Public
-- License as published by the Free Software Foundation; either
-- version 3 of the License, or (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-- General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; see the file COPYING3. If not, see
-- <http://www.gnu.org/licenses/>.
with Ada.Real_Time;
with Ada.Synchronous_Task_Control;
package body SO is
The_SO : Ada.Synchronous_Task_Control.Suspension_Object;
task T is
pragma Task_Name ("so.t");
end T;
task body T is
begin
loop
Ada.Synchronous_Task_Control.Suspend_Until_True (The_SO);
end loop;
end T;
task Tick is
pragma Task_Name ("so.tick");
end Tick;
task body Tick is
use type Ada.Real_Time.Time;
begin
loop
delay until Ada.Real_Time.Clock + Ada.Real_Time.Seconds (2);
Ada.Synchronous_Task_Control.Set_True (The_SO);
end loop;
end Tick;
end SO;