Applying a modified version of TomTheDragon's patch to prevent the sim
from crashing when signals are unavailable.melanie
parent
da2c1e8aad
commit
cdfdf6322d
|
@ -131,7 +131,6 @@ namespace OpenSim
|
|||
|
||||
private Thread signal_thread = new Thread (delegate ()
|
||||
{
|
||||
System.Console.WriteLine("------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------");
|
||||
while (true)
|
||||
{
|
||||
// Wait for a signal to be delivered
|
||||
|
@ -152,15 +151,23 @@ namespace OpenSim
|
|||
m_log.Info("====================================================================");
|
||||
|
||||
if(!Util.IsWindows())
|
||||
{
|
||||
try
|
||||
{
|
||||
// linux mac os specifics
|
||||
signals = new Mono.Unix.UnixSignal[]
|
||||
{
|
||||
// new Mono.Unix.UnixSignal(Mono.Unix.Native.Signum.SIGINT),
|
||||
new Mono.Unix.UnixSignal(Mono.Unix.Native.Signum.SIGTERM)
|
||||
};
|
||||
signal_thread.Start();
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
m_log.Info("Could not set up UNIX signal handlers. SIGTERM will not");
|
||||
m_log.InfoFormat("shut down gracefully: {0}", e.Message);
|
||||
m_log.Debug("Exception was: ", e);
|
||||
}
|
||||
}
|
||||
//m_log.InfoFormat("[OPENSIM MAIN]: GC Is Server GC: {0}", GCSettings.IsServerGC.ToString());
|
||||
// http://msdn.microsoft.com/en-us/library/bb384202.aspx
|
||||
//GCSettings.LatencyMode = GCLatencyMode.Batch;
|
||||
|
|
Loading…
Reference in New Issue