default value

This commit is contained in:
Robin Müller 2023-03-24 11:58:23 +01:00
parent d16b3c7e67
commit e704295cce
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
1 changed files with 1 additions and 1 deletions

View File

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