Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1085 | pj | 1 | /* |
2 | * Project: S.Ha.R.K. |
||
3 | * |
||
4 | * Coordinators: |
||
5 | * Giorgio Buttazzo <giorgio@sssup.it> |
||
6 | * Paolo Gai <pj@gandalf.sssup.it> |
||
7 | * |
||
8 | * Authors : |
||
9 | * Paolo Gai <pj@gandalf.sssup.it> |
||
10 | * Massimiliano Giorgi <massy@gandalf.sssup.it> |
||
11 | * Luca Abeni <luca@gandalf.sssup.it> |
||
12 | * (see the web pages for full authors list) |
||
13 | * |
||
14 | * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy) |
||
15 | * |
||
16 | * http://www.sssup.it |
||
17 | * http://retis.sssup.it |
||
18 | * http://shark.sssup.it |
||
19 | */ |
||
20 | |||
21 | /** |
||
22 | ------------ |
||
23 | CVS : $Id: static.h,v 1.1.1.1 2002-09-02 09:37:48 pj Exp $ |
||
24 | |||
25 | File: $File$ |
||
26 | Revision: $Revision: 1.1.1.1 $ |
||
27 | Last update: $Date: 2002-09-02 09:37:48 $ |
||
28 | ------------ |
||
29 | |||
30 | Static scheduler demo (FIRST Project Hand-off) |
||
31 | |||
32 | **/ |
||
33 | |||
34 | /* |
||
35 | * Copyright (C) 2001 Paolo Gai |
||
36 | * |
||
37 | * This program is free software; you can redistribute it and/or modify |
||
38 | * it under the terms of the GNU General Public License as published by |
||
39 | * the Free Software Foundation; either version 2 of the License, or |
||
40 | * (at your option) any later version. |
||
41 | * |
||
42 | * This program is distributed in the hope that it will be useful, |
||
43 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
44 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
45 | * GNU General Public License for more details. |
||
46 | * |
||
47 | * You should have received a copy of the GNU General Public License |
||
48 | * along with this program; if not, write to the Free Software |
||
49 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
||
50 | * |
||
51 | */ |
||
52 | |||
53 | |||
54 | #ifndef __STATIC_H__ |
||
55 | #define __STATIC_H__ |
||
56 | |||
57 | #include <ll/ll.h> |
||
58 | #include <kernel/config.h> |
||
59 | #include <sys/types.h> |
||
60 | #include <kernel/types.h> |
||
61 | #include <modules/codes.h> |
||
62 | |||
63 | |||
64 | |||
65 | |||
66 | |||
67 | |||
68 | |||
69 | |||
70 | /*+ flags... +*/ |
||
71 | |||
72 | /* no flags for the static scheduler */ |
||
73 | |||
74 | |||
75 | |||
76 | |||
77 | #define STATIC_PCLASS 0x1000 |
||
78 | |||
79 | #define STATIC_LEVELNAME "STATIC 1st Project" |
||
80 | #define STATIC_LEVEL_CODE 167 |
||
81 | #define STATIC_LEVEL_VERSION 1 |
||
82 | |||
83 | |||
84 | /* ----------------------------------------------------------------------- |
||
85 | ELASTIC_HARD_TASK_MODEL: elastic hard Tasks |
||
86 | ----------------------------------------------------------------------- */ |
||
87 | |||
88 | |||
89 | typedef struct { |
||
90 | TASK_MODEL t; |
||
91 | struct timespec offset; |
||
92 | } STATIC_TASK_MODEL; |
||
93 | |||
94 | #define static_task_default_model(m,o) \ |
||
95 | task_default_model((m).t,STATIC_PCLASS), \ |
||
96 | ((m).offset).tv_sec = (o).tv_sec, \ |
||
97 | ((m).offset).tv_nsec = (o).tv_nsec |
||
98 | #define static_task_def_level(m,l) task_def_level((m).t,l) |
||
99 | #define static_task_def_arg(m,a) task_def_arg((m).t,a) |
||
100 | #define static_task_def_stack(m,s) task_def_stack((m).t,s) |
||
101 | #define static_task_def_stackaddr(m,s) task_def_stackaddr((m).t,s) |
||
102 | #define static_task_def_group(m,g) task_def_group((m).t,g) |
||
103 | #define static_task_def_usemath(m) task_def_usemath((m).t) |
||
104 | #define static_task_def_system(m) task_def_system((m).t) |
||
105 | #define static_task_def_nokill(m) task_def_nokill((m).t) |
||
106 | #define static_task_def_ctrl_jet(m) task_def_ctrl_jet((m).t) |
||
107 | #define static_task_def_joinable(m) task_def_joinable((m).t) |
||
108 | #define static_task_def_unjoinable(m) task_def_unjoinable((m).t) |
||
109 | |||
110 | |||
111 | |||
112 | |||
113 | |||
114 | /*+ Registration function: |
||
115 | int flags Options to be used in this level instance... |
||
116 | +*/ |
||
117 | void STATIC_register_level(void); |
||
118 | |||
119 | void STATIC_start(LEVEL l, struct timespec *h, struct timespec *o); |
||
120 | |||
121 | #endif |
||
122 |