summaryrefslogtreecommitdiff
path: root/ace/Task.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1996-12-15 16:38:54 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1996-12-15 16:38:54 +0000
commitd0b22560e2f8ee49cb6b62c3cab0260bd29a939f (patch)
tree5c7b58240f4d2ab28cec729bb1b7d46a5d01f47f /ace/Task.h
parent38a7f5bae22d9f3b15804dff59cf26196ccd9838 (diff)
downloadATCD-d0b22560e2f8ee49cb6b62c3cab0260bd29a939f.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Task.h')
-rw-r--r--ace/Task.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Task.h b/ace/Task.h
index 0b11f6ead24..8e6f4752f27 100644
--- a/ace/Task.h
+++ b/ace/Task.h
@@ -57,11 +57,11 @@ public:
ACE_Task_Base (ACE_Thread_Manager *);
// = Initialization and termination hooks (note that these *must* be defined by subclasses).
- virtual int open (void *args = 0) = 0;
+ virtual int open (void *args = 0);
// Hook called to open a Task. <args> can be used to pass arbitrary
// information into <open>.
- virtual int close (u_long flags = 0) = 0;
+ virtual int close (u_long flags = 0);
// Hook called from ACE_Task_Exit when during thread exit and from
// the default implemenation of module_closed().
@@ -75,7 +75,7 @@ public:
// ACE_Task instance exits.
// = Immediate and deferred processing methods, respectively.
- virtual int put (ACE_Message_Block *, ACE_Time_Value * = 0) = 0;
+ virtual int put (ACE_Message_Block *, ACE_Time_Value * = 0);
// Transfer msg into the queue to handle immediate processing.
virtual int svc (void);