summaryrefslogtreecommitdiff
path: root/ACE/ace/Thread.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 12:39:57 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 12:39:57 +0100
commit6f91193f0b537d437645ae9e10823a519f547888 (patch)
tree224ad9643523a625196045f37ead1a4e73ddc1f9 /ACE/ace/Thread.h
parentfb7e13241cc5ebd590e32ec4343a75d53691cda6 (diff)
downloadATCD-6f91193f0b537d437645ae9e10823a519f547888.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/ace/Thread.h')
-rw-r--r--ACE/ace/Thread.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/Thread.h b/ACE/ace/Thread.h
index 6290de52e9f..67a190dcc41 100644
--- a/ACE/ace/Thread.h
+++ b/ACE/ace/Thread.h
@@ -189,7 +189,7 @@ public:
static int kill (ACE_thread_t, int signum);
/// Yield the thread to another.
- static void yield (void);
+ static void yield ();
/**
* Return the unique kernel handle of the thread. Note that on
@@ -200,14 +200,14 @@ public:
static void self (ACE_hthread_t &t_handle);
/// Return the unique ID of the thread.
- static ACE_thread_t self (void);
+ static ACE_thread_t self ();
/// Exit the current thread and return "status".
/// Should _not_ be called by main thread.
static void exit (ACE_THR_FUNC_RETURN status = 0);
/// Get the LWP concurrency level of the process.
- static int getconcurrency (void);
+ static int getconcurrency ();
/// Set the LWP concurrency level of the process.
static int setconcurrency (int new_level);
@@ -262,11 +262,11 @@ public:
static int cancel (ACE_thread_t t_id);
/// Test the cancel.
- static void testcancel (void);
+ static void testcancel ();
private:
/// Ensure that we don't get instantiated.
- ACE_Thread (void);
+ ACE_Thread ();
};
ACE_END_VERSIONED_NAMESPACE_DECL