Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ProcessScheduler/Process.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class Process
*
* @return: period or SERVICE_CONSTANTLY
*/
inline unsigned int getPeriod() { return _period; }
inline uint32_t getPeriod() { return _period; }

/*
* Get the priority for this process
Expand Down Expand Up @@ -323,7 +323,7 @@ class Process
Scheduler &_scheduler;
bool _enabled, _force;
int _iterations;
unsigned int _period;
uint32_t _period;
uint8_t _sid;
uint32_t _scheduledTS, _actualTS;
// Linked List
Expand Down