Move to Init().
This commit is contained in:
@@ -161,7 +161,7 @@ int64_t ArchHooks::GetMicrosecondsSinceStart( bool bAccurate )
|
||||
}
|
||||
#endif
|
||||
|
||||
ArchHooks_Unix::ArchHooks_Unix()
|
||||
void ArchHooks_Unix::Init()
|
||||
{
|
||||
/* First, handle non-fatal termination signals. */
|
||||
SignalHandler::OnClose( DoCleanShutdown );
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
class ArchHooks_Unix: public ArchHooks
|
||||
{
|
||||
public:
|
||||
ArchHooks_Unix();
|
||||
void Init();
|
||||
RString GetArchName() const { return "Unix"; }
|
||||
void DumpDebugInfo();
|
||||
|
||||
|
||||
@@ -65,7 +65,7 @@ static void DoCrashSignalHandler( int signal, siginfo_t *si, const ucontext_t *u
|
||||
}
|
||||
#endif
|
||||
|
||||
ArchHooks_darwin::ArchHooks_darwin()
|
||||
void ArchHooks_darwin::Init()
|
||||
{
|
||||
/* First, handle non-fatal termination signals. */
|
||||
SignalHandler::OnClose( DoCleanShutdown );
|
||||
|
||||
@@ -7,7 +7,7 @@ class RageMutex;
|
||||
class ArchHooks_darwin : public ArchHooks
|
||||
{
|
||||
public:
|
||||
ArchHooks_darwin();
|
||||
void Init();
|
||||
~ArchHooks_darwin();
|
||||
RString GetArchName() const;
|
||||
RString GetMachineId() const;
|
||||
|
||||
Reference in New Issue
Block a user