Allow creating regular threads #140

Merged
muellerr merged 8 commits from allow_creating_regular_threads into develop 2023-03-24 14:15:54 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit e704295cce - Show all commits

View File

@ -11,7 +11,7 @@
enum SchedulingPolicy { REGULAR, RR };
struct PosixThreadArgs {
SchedulingPolicy policy;
SchedulingPolicy policy = SchedulingPolicy::REGULAR;
};
class PosixThread {