We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4a107b7 + 6f6d5cd commit c52d974Copy full SHA for c52d974
1 file changed
src/ProcessScheduler/Process.h
@@ -68,7 +68,7 @@ class Process
68
*
69
* @return: period or SERVICE_CONSTANTLY
70
*/
71
- inline unsigned int getPeriod() { return _period; }
+ inline uint32_t getPeriod() { return _period; }
72
73
/*
74
* Get the priority for this process
@@ -323,7 +323,7 @@ class Process
323
Scheduler &_scheduler;
324
bool _enabled, _force;
325
int _iterations;
326
- unsigned int _period;
+ uint32_t _period;
327
uint8_t _sid;
328
uint32_t _scheduledTS, _actualTS;
329
// Linked List
0 commit comments