summaryrefslogtreecommitdiff
path: root/ACE/ace/Timeprobe_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Timeprobe_T.h')
-rw-r--r--ACE/ace/Timeprobe_T.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/ACE/ace/Timeprobe_T.h b/ACE/ace/Timeprobe_T.h
index 9277897b5a3..0c0a670841f 100644
--- a/ACE/ace/Timeprobe_T.h
+++ b/ACE/ace/Timeprobe_T.h
@@ -80,7 +80,7 @@ public:
ACE_Timeprobe_Ex (ALLOCATOR *allocator,
u_long size = ACE_DEFAULT_TIMEPROBE_TABLE_SIZE);
/// Destructor.
- ~ACE_Timeprobe_Ex (void);
+ ~ACE_Timeprobe_Ex ();
/// Record a time. @a event is used to describe this time probe.
void timeprobe (u_long event);
@@ -93,13 +93,13 @@ public:
u_long minimum_id);
/// Print the time probes.
- void print_times (void);
+ void print_times ();
/// Print the time probes.
- void print_absolute_times (void);
+ void print_absolute_times ();
/// Reset the slots. All old time probes will be lost.
- void reset (void);
+ void reset ();
void increase_size (u_long size);
@@ -109,33 +109,33 @@ public:
// = (Somewhat private) Accessors
/// Event Descriptions
- ACE_Unbounded_Set<ACE_Event_Descriptions> &event_descriptions (void);
+ ACE_Unbounded_Set<ACE_Event_Descriptions> &event_descriptions ();
/// Sorted Event Descriptions.
- ACE_Unbounded_Set<ACE_Event_Descriptions> &sorted_event_descriptions (void);
+ ACE_Unbounded_Set<ACE_Event_Descriptions> &sorted_event_descriptions ();
/// Find description of event @a i
const char *find_description_i (u_long i);
/// Sort event descriptions
- void sort_event_descriptions_i (void);
+ void sort_event_descriptions_i ();
/// Time probe slots
- ACE_timeprobe_t *timeprobes (void);
+ ACE_timeprobe_t *timeprobes ();
/// Synchronization variable.
- ACE_LOCK &lock (void);
+ ACE_LOCK &lock ();
/// Max size of timestamp table
- u_long max_size (void);
+ u_long max_size ();
/// Current size of timestamp table
- u_long current_size (void);
+ u_long current_size ();
protected:
/// Obtain an allocator pointer. If there is no allocator stored in
/// the instance, the singleton allocator in the current process is used.
- ALLOCATOR * allocator (void);
+ ALLOCATOR * allocator ();
/// Event Descriptions
EVENT_DESCRIPTIONS event_descriptions_;
@@ -191,7 +191,7 @@ public:
ACE_Function_Timeprobe (Timeprobe &timeprobe, u_long event);
/// Destructor.
- ~ACE_Function_Timeprobe (void);
+ ~ACE_Function_Timeprobe ();
protected:
/// Reference to timeprobe.