Skip to content

Commit

Permalink
Fix linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
gleocadie committed May 31, 2024
1 parent 9e8a4ab commit a05ed78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ bool CorProfilerCallback::InitializeServices()
if (_pConfiguration->IsSystemCallsShieldEnabled())
{
// This service must be started before StackSamplerLoop-based profilers to help with non-restartable system calls (ex: socket operations)
_systemCallsShield = RegisterService<SystemCallsShield>(_pConfiguration);
_systemCallsShield = RegisterService<SystemCallsShield>(_pConfiguration.get());
}
#endif

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

#include "unknwn.h"
#include <atomic>
#include <memory>
#include <mutex>

class IConfiguration;
Expand Down

0 comments on commit a05ed78

Please sign in to comment.