changed type of profile counters from int to long

fixed $Id$ in file headers
This commit is contained in:
krrios 2007-04-22 07:19:03 +00:00
parent 5c64b1754c
commit ea4b699cb9
5 changed files with 13 additions and 13 deletions

View file

@ -5,7 +5,7 @@
* copyright : (C) The RunUO Software Team
* email : info@runuo.com
*
* $Id: PacketProfile.cs 4 2006-06-15 04:28:39Z mark $
* $Id$
*
***************************************************************************/
@ -40,7 +40,7 @@ namespace Server.Diagnostics {
private string _name;
private int _count;
private long _count;
private TimeSpan _totalTime;
private TimeSpan _peakTime;
@ -53,7 +53,7 @@ namespace Server.Diagnostics {
}
}
public int Count {
public long Count {
get {
return _count;
}

View file

@ -5,7 +5,7 @@
* copyright : (C) The RunUO Software Team
* email : info@runuo.com
*
* $Id: PacketProfile.cs 4 2006-06-15 04:28:39Z mark $
* $Id$
*
***************************************************************************/

View file

@ -5,7 +5,7 @@
* copyright : (C) The RunUO Software Team
* email : info@runuo.com
*
* $Id: PacketProfile.cs 4 2006-06-15 04:28:39Z mark $
* $Id$
*
***************************************************************************/
@ -79,9 +79,9 @@ namespace Server.Diagnostics {
return prof;
}
private int _created;
private long _created;
public int Created {
public long Created {
get {
return _created;
}

View file

@ -5,7 +5,7 @@
* copyright : (C) The RunUO Software Team
* email : info@runuo.com
*
* $Id: PacketProfile.cs 4 2006-06-15 04:28:39Z mark $
* $Id$
*
***************************************************************************/

View file

@ -5,7 +5,7 @@
* copyright : (C) The RunUO Software Team
* email : info@runuo.com
*
* $Id: PacketProfile.cs 4 2006-06-15 04:28:39Z mark $
* $Id$
*
***************************************************************************/
@ -47,9 +47,9 @@ namespace Server.Diagnostics {
return prof;
}
private int _created, _started, _stopped;
private long _created, _started, _stopped;
public int Created {
public long Created {
get {
return _created;
}
@ -58,7 +58,7 @@ namespace Server.Diagnostics {
}
}
public int Started {
public long Started {
get {
return _started;
}
@ -67,7 +67,7 @@ namespace Server.Diagnostics {
}
}
public int Stopped {
public long Stopped {
get {
return _stopped;
}