Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 908 → Rev 909

/shark/trunk/ports/first/fsf_include/fsf_basic_types.h
128,11 → 128,18
// EDF: struct timespec (deadline)
// TABLE_DRIVEN : struct fsf_table_driven_params_t
 
 
struct fsf_target_window {
struct timespec start;
struct timespec end;
struct timespec comp_time;
};
//Scheduling parameters for the table-driven policy (t.b.d)
typedef struct {
// list of target windows (t.b.d.)
// deadline (for the API): end of september
int size;
struct fsf_target_window table[FSF_MAX_N_TARGET_WINDOWS];
} fsf_table_driven_params_t;