home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 67 / IOPROG_67A.ISO / soft / Tools / mwsppv4.exe / THREADS.SCRIPT < prev    next >
Encoding:
Text File  |  1998-12-10  |  449 b   |  22 lines

  1. !!Script
  2. // Copyright ⌐ 1997-1998 - Modelworks Software
  3. // @Modified build 239 cm19981208 - added document comment
  4.  
  5. /**   
  6. @Tool: threads~sends the threads command to the jdb debugger.
  7. @EndTool: 
  8. @Summary: threads~sends the threads command to the jdb debugger
  9. */
  10.  
  11. function DoCommand()
  12. {
  13.   var jdkDebugger = getGlobal("JDKDebugger", null);
  14.   if (jdkDebugger)
  15.   {
  16.     jdkDebugger.sendCommand("threads\n", true);
  17.   }
  18. }
  19.  
  20. !!/Script
  21.  
  22.