Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 984 → Rev 985

/shark/trunk/ports/first/fsf_include/fsf_configuration_parameters.h
43,7 → 43,7
// Maximum number of critical sections that can be stored in a
// contract parameters object
 
#define FSF_MAX_N_CRITICAL_SECTIONS 10
#define FSF_MAX_N_CRITICAL_SECTIONS 25
 
 
// Maximum number of utilization values (pairs of budget and period)
86,7 → 86,7
// thread, and it should be at least 1 level below the maximum of the
// system
 
#define FSF_SCHEDULER_PRIORITY 104
#define FSF_SCHEDULER_PRIORITY 29
 
 
// Real-time signal number reserved for the application scheduler to
124,12 → 124,12
 
// Initial period of the service thread (timespec)
 
#define FSF_SERVICE_THREAD_PERIOD {0,10000000} //0.1 seg //3.1 0.01
#define FSF_SERVICE_THREAD_PERIOD {0,10000000} //0.01 seg //3.1 0.01
 
 
// Initial budget of the service thread (timespec)
 
#define FSF_SERVICE_THREAD_BUDGET {0,1000000} //0.01 seg //3.1 0.001
#define FSF_SERVICE_THREAD_BUDGET {0,1000000} //0.001 seg //3.1 0.001
 
 
// Initial priority of the service thread, it has to be lower than the
155,7 → 155,7
 
//Maximum number of pending replenishments in each sporadic server
 
#define FSF_MAX_N_PENDING_REPLENISHMENTS 1050 //25
#define FSF_MAX_N_PENDING_REPLENISHMENTS 250
 
 
//Maximum number of target windows in a table driven schedule
184,4 → 184,18
#define FSF_MAX_SIZE_SHARED_OBJ_ID 65
 
 
//Maximum number of networks accesible from a node
 
#define FSF_MAX_N_NETWORK_IDS 1
 
//Maximum number of servers that can be given in a servers list
//to the group negotiation/cancellation primitive
 
#define FSF_MAX_N_SERVER_VALUES 10
 
//Maximum number of contracts that can be given in a contracts list
//to the group negotiation/cancellation primitive
 
#define FSF_MAX_N_CONTRACT_VALUES 10
 
#endif /* _FSF_CONFIGURATION_PARAMETERS_H_ */