diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-01-20 19:33:12 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-01-20 19:33:12 +0000 |
commit | 5ff2862cd29f3283dce0701d794cb990a2bc92b1 (patch) | |
tree | f624eb89c411a782d341338e1bd8cea8e713c90a /ace/Thread_Manager.h | |
parent | 74ff001407f539d9bf4589f165f5d1a84faa0298 (diff) | |
download | ATCD-5ff2862cd29f3283dce0701d794cb990a2bc92b1.tar.gz |
changed NULL to 0 for other than WIN32
Diffstat (limited to 'ace/Thread_Manager.h')
-rw-r--r-- | ace/Thread_Manager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Thread_Manager.h b/ace/Thread_Manager.h index cc2be4a32a6..6202bbd4ccc 100644 --- a/ace/Thread_Manager.h +++ b/ace/Thread_Manager.h @@ -111,7 +111,7 @@ public: long flags = THR_NEW_LWP, u_int priority = 0, int grp_id = -1, - ACE_Task_Base *task = NULL); + ACE_Task_Base *task = 0); // Create N new threads, all of which execute <func>. // Returns: on success a unique group id that can be used to control // all of the threads in the same group. On failure, returns -1. |