summaryrefslogtreecommitdiff
path: root/ACE/ace/Malloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Malloc.h')
-rw-r--r--ACE/ace/Malloc.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/ACE/ace/Malloc.h b/ACE/ace/Malloc.h
index 3ad30ac5f08..06cc550c507 100644
--- a/ACE/ace/Malloc.h
+++ b/ACE/ace/Malloc.h
@@ -188,7 +188,7 @@ typedef ACE_Atomic_Op<ACE_PROCESS_MUTEX, int> ACE_INT;
struct ACE_Export ACE_Malloc_Stats
{
ACE_Malloc_Stats (void);
- void dump (void) const;
+ void dump () const;
/// Coarse-grained unit of allocation.
ACE_INT nchunks_;
@@ -265,7 +265,7 @@ public:
class ACE_Export ACE_Malloc_Header
{
public:
- ACE_Malloc_Header (void);
+ ACE_Malloc_Header ();
/// Points to next block if on free list.
ACE_Malloc_Header *next_block_;
@@ -284,7 +284,7 @@ public:
char padding_[(ACE_MALLOC_PADDING_SIZE) ? ACE_MALLOC_PADDING_SIZE : ACE_MALLOC_ALIGN];
/// Dump the state of the object.
- void dump (void) const;
+ void dump () const;
};
/**
@@ -307,10 +307,10 @@ public:
ACE_Name_Node *head);
/// Constructor.
- ACE_Name_Node (void);
+ ACE_Name_Node ();
/// Constructor.
- ~ACE_Name_Node (void);
+ ~ACE_Name_Node ();
/// Initialize a name node pointer.
static void init_ptr (ACE_Name_Node **ptr,
@@ -318,7 +318,7 @@ public:
void *base_addr);
/// Return a pointer to the name of this node.
- const char *name (void) const;
+ const char *name () const;
/// Name of the Node.
char *name_;
@@ -333,14 +333,14 @@ public:
ACE_Name_Node *prev_;
/// Dump the state of the object.
- void dump (void) const;
+ void dump () const;
private:
/// Copy constructor.
ACE_Name_Node (const ACE_Name_Node &);
};
/// Print out a bunch of size info for debugging.
- static void print_alignment_info (void);
+ static void print_alignment_info ();
/// Reference counter.
int ref_counter_;
@@ -379,7 +379,7 @@ public:
ACE_Malloc_Header base_;
/// Dump the state of the object.
- void dump (void) const;
+ void dump () const;
};
ACE_END_VERSIONED_NAMESPACE_DECL