home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / ODF Release 3 / ODFDev / ODF / OS / FWThread / SLThrdGd.cpp < prev    next >
Encoding:
Text File  |  1996-12-16  |  1.0 KB  |  42 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                SLThrdGd.cpp
  4. //    Release Version:    $ ODF 3 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #include "FWFound.hpp"
  11.  
  12. #ifndef SLTHRDGD_H
  13. #include "SLThrdGd.h"
  14. #endif
  15.  
  16. void FW_Thread_NoteCreation(FW_ThreadID newlyCreatedThread)
  17. {
  18.     // No try block necessary - Do not throw
  19.  
  20. //    ::DebugStr("\pFW_Thread_NoteCreation");
  21.     FW_CThreadSafe::NoteCreation(newlyCreatedThread);
  22. }
  23.  
  24. void FW_Thread_NoteTermination(FW_ThreadID threadBeingKilled)
  25. {
  26.     // No try block necessary - Do not throw
  27.  
  28. //    ::DebugStr("\pFW_Thread_NoteTermination");
  29.     FW_CThreadSafe::NoteTermination(threadBeingKilled);
  30. }
  31.  
  32. #ifdef    FW_BUILD_MAC
  33. void FW_Thread_NoteSwitch(FW_ThreadID aThread, FW_Boolean switchingIn)
  34. {
  35.     // No try block necessary - Do not throw
  36.  
  37. //    ::DebugStr("\pFW_Thread_NoteSwitch");
  38.     FW_CThreadSafe::NoteSwitch(aThread, switchingIn);
  39. }
  40. #endif
  41.  
  42.